.ott-student-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
}


.ott-student-dashboard h2 {
    font-size: 36px;
    margin-bottom: 30px;
}


.ott-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 50px;
}


.ott-stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}


.ott-stat-card h3 {
    font-size: 40px;
    margin: 0;
}


.ott-stat-card p {
    color: #6b7280;
}



.ott-dashboard-course {

    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}


.ott-dashboard-course h4 {

    font-size:24px;

}


.ott-course-progress {

    margin:25px 0;

}


.ott-progress-bar {

    height:10px;
    background:#e5e7eb;
    border-radius:20px;
    overflow:hidden;

}


.ott-progress-fill {

    height:100%;
    background:#39FF14;
    border-radius:20px;

}


.ott-dashboard-course a {

    display:inline-block;
    padding:12px 24px;
    background:#000;
    color:#fff;
    border-radius:30px;
    text-decoration:none;

}

.ott-completed-button {

    display:inline-block;
    padding:12px 24px;
    border-radius:30px;

    background:#39FF14;
    color:#000;

    text-decoration:none;
    font-weight:600;

}