.table-image {
    max-width: 70px;
    height: 60px;
    border-radius: 50%;
}

.boxtraning
{
    margin: 10px;
    background: #38a5cd;
    color: #fff;
    padding: 0px;
    box-shadow: 6px 8px 10px 7px #e4e6e7;
}
.btnWidth
{
    width:100%
}
.rank
{
    background: #38a5cd;
    --bs-text-opacity: 1;
    color: #fff !important;
    width: fit-content;
    padding: 0px 10px 1px 10px;
    border-radius: 14px;
}
.underline
{
    color: #38a5cd;
    text-decoration: underline;
}
.form-control:disabled {
    border-radius: 20px;

}
.form-control {
    border-radius: 20px !important;
}
.green {
    padding: 6px;
    background: #36B7A7;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 100px;
    color: #fff;
    font-size: 20px;
}

/* Course List Styles */
.course-list {
    width: 100%;
    margin-bottom: 20px;
}

.course-list h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.course-list ul {
    list-style: none;
    padding: 0;
}

.course-list li {
    padding: 10px 15px;
    background-color: #fff;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.course-list li.active {
    background-color: #007bff;
    color: white;
}

.course-list li.completed {
    background-color: #28a745;
    color: white;
}

.course-list li.disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

/* Video Section Styles */
.video-section {
    text-align: center;
}

#player {
    margin-bottom: 15px;
}

.progress-container {
    margin-top: 15px;
}

progress {
    width: 100%;
    height: 20px;
}

#progressText {
    display: block;
    margin-top: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .course-list li {
        font-size: 16px;
    }

    #player {
        width: 100%; /* Make video responsive */
        height: auto;
    }
}


.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* for smooth scrolling on mobile */
}

@media (max-width: 768px) {
    #responsive-datatable {
        font-size: 14px; /* Adjust font size for mobile */
    }
}

