body * {
    font-family: "Prompt", serif;
    color: white;
}

a.btn {
    text-decoration: none;
    border-radius: 20px;
}

.navbar a {
    text-decoration: none;
}

html,
body {
    min-height: 100%;
    margin: 0;
}



button.btn {
    border-radius: 20px;
}


input.form-control {

    border-radius: 20px;

}


.card {

    /* background-color: #4c4949; */
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}



nav.navbar {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
}

.navbar .d-flex {
    align-items: center;
    gap: 20px;
    /* ระยะห่างระหว่างองค์ประกอบ */
}


body {
    background-image: url("http://localhost/vinyltemplate/images/background.jpg");
    /* ใส่ URL ของภาพ */
    background-size: cover;
    /* ให้ภาพขยายเต็มหน้าจอ */
    background-repeat: no-repeat;
    /* ห้ามให้ภาพซ้ำ */
    background-position: center center;
    /* จัดให้อยู่ตรงกลาง */
    background-attachment: scroll;

    background-attachment: scroll;

    /* จัดกลางหน้าจอ */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;


}

.scrollable-div {
    width: 100%;
    max-height: 480px;
    min-height: 480px;
    overflow: auto;
    /* เพิ่ม scroll เมื่อเนื้อหาเกินขอบเขต */
}



/* ปรับแต่ง scroll bar สำหรับเบราว์เซอร์ที่รองรับ */
.scrollable-div::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    margin-right: 5px;
}

.scrollable-div::-webkit-scrollbar-thumb {
    background-color: #888;
    /* สีของ scroll bar */
    border-radius: 10px;
    /* รูปทรงโค้งมนของ scroll bar */
}

.scrollable-div::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* สีเมื่อ hover */
}

.scrollable-div::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* สีพื้นหลังของ scroll bar */
}