:root {
    --background-gradient: linear-gradient(178deg, #ffffFF 10%, #3333ff);
    --gray: #34495e;
    --darkgray: #2c3e50;
}

select {
    /* Reset Select */
    appearance: none;
    outline: 10px red;
    border: 0;
    box-shadow: none;
    /* Personalize */
    flex: 1;
    padding: 0 1em;
    color: #fff;
    background-color: var(--darkgray);
    background-image: none;
    cursor: pointer;
}

/* Custom Select wrapper */
.select {
    position: relative;
    display: flex;
    width: 60%;
    height: 2.5em;
    border-radius: .25em;
    overflow: hidden;
}

/* Arrow */
.select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em;
    background-color: #34495e;
    transition: .25s all ease;
    pointer-events: none;
}

.down_note {
    display: flex;
    justify-content: center;

}

.modal-header {
    background-color: #00579f;
    /* สีพื้นหลังเวลา */
    border-top-left-radius: 10px;
    /* การโค้งมนในมุมบนซ้าย */
    border-top-right-radius: 10px;
    /* การโค้งมนในมุมบนขวา */
}

.modal-content {
    /* background-color: rgb(3, 83, 174); */
    background-color: #334;
    /* สีพื้นหลังเข้ม */
    border-radius: 15px;
    /* การโค้งมน */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    /* เงาของ modal */
    color: #fff;
    /* สีตัวหนังสือ */
    font-size: 14px;
    /* ขนาดตัวอักษรใน modal */
}

.modal-body {
    display: '';
    justify-content: center;
    align-items: center;
    min-height: 300px;

}

.modal-footer {
    display: '';
    color: #06f93d;
    /* สีตัวหนังสือ */
    font-size: 12px;

}

.modal-body img {
    max-width: 100%;
    max-height: 100%;
}

body {
    background-color: black;
}

/* .text-primary {
        color: #007bff;
    } */

.select select {
    width: 60%;
    /* กำหนดความกว้างเท่ากับ container */
    border-radius: 8px;
    /* กำหนดความโค้งมนในมุม */
    padding: 8px;
    /* กำหนดระยะห่างของเนื้อหาภายใน select */
    background-color: #333;
    /* สีพื้นหลังเข้ม */
    color: #fff;
    /* สีตัวหนังสือ */
}

/* CSS */
.table {
    background-color: #454545;
    /* สีพื้นหลังเข้ม */
    color: #fff;
    /* สีตัวหนังสือ */
    font-size: 12px;
    /* ขนาดตัวอักษรในตาราง */
}

.table>:not(caption)>*>* {
    background-color: #454545;
}

.table th {
    /* color: #4496ef; */
    color: #fff;
    /* สีตัวหนังสือส่วนหัวตาราง */
    background-color: #444;
    /* สีพื้นหลังส่วนหัวและท้ายตารางเข้มข้น */
}

.table td {
    color: #b5b5b5;
    text-align: center;
    /* จัดกึ่งกลางข้อความในเซลล์ตาราง */
    vertical-align: middle;
    /* จัดกึ่งกลางตัวหนังสือในเซลล์ตาราง */
    /* border-radius: 5px; */
    /* การโค้งมนในมุมของเซลล์ */
    padding: 6px;
    /* ระยะห่างภายในเซลล์ */
}

.table thead th,
.table tfoot th {
    background-color: #333;
    /* สีพื้นหลังส่วนหัวและท้ายตารางเข้มข้น */
}

.description p {
    margin: 5px 0;
}

.w3-white,
.w3-hover-white:hover {
    color: #9b9d9e !important;
    background-color: #141414 !important;
}

.img-thumbnail {
    /* padding: 0.25em; */
    background-color: #222;
    border: var(--bs-border-width) solid #555;
    border-radius: var(--bs-border-radius);
    max-width: 100%;
    height: auto;
}

body {
    background-color: black;
}
.small-dot {
    height: 6px;
    width: 6px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}