#div-track-playing{
    background-color: rgb(191, 223, 247);
    min-height: 240px;
    border: 2px solid #ccc; /* Adjust border color and thickness as needed */
    border-radius: 15px; /* Adjust the radius for more or less rounding */    
    font-size: 24px;
}

#div-setting{
    background-color: rgb(249, 249, 221);
    border: 2px solid #ccc; /* Adjust border color and thickness as needed */
    border-radius: 15px; /* Adjust the radius for more or less rounding */    
    padding: 8px;
}

#div-setting .setting-title{
    font-weight: bold;
}

/* --------------------------------------  */

#playlist .col{
    width: 10% !important;
}

.esl-inline-container {
    display: flex; /* Use flexbox for alignment */
    /* align-items: center;  */
    /* Center items vertically */
}

#div-esl-citizen #playlist #div-infor {
    display: flex;
    /* align-items: center; */
    cursor: pointer; /* Change cursor to pointer */
}

.question-order-bold {
    font-weight: bold;
    padding-right: 8px;
}

.question-order-bold::after {
    content: ". ";
}

#div-infor .en-question{
    /* background-color: green;
    width: 100%; */
    margin: 0px;    
    padding: 0px;
    /* padding-left: 8px; */
    text-align: justify;
}

#div-esl-citizen #playlist #div-infor i {
    margin-top: 3px;
    margin-left: 8px;
    color: #007bff;
}

#div-esl-citizen #playlist input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and text */
}



/* Testing */
#my-body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}


.slider-container {
    position: relative;
    width: 300px;
    background-color: #007bff;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    margin: 10px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    background: #007bff;
    border-radius: 50%;
    cursor: pointer;
}

.popup {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: none;
}

/* Optional: Center modal vertically */
.modal-dialog-center{
    display: flex;
    align-items: center;
    min-height: calc(100vh - 1rem);
}

.modal-title{
    font-size: 20px;
    font-weight: bold;
    color: #004b9a;
}
/* --------------  */

@media (max-width: 768px) {
    #playlist .col{
        width: 25% !important;
    }
      
}