/* DASHBOARD LAYOUT */

.dash-wrapper{
    max-width:900px;
    margin:40px auto;
}

.dash-header h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.dash-header p{
    font-size:20px;
    color:#444;
    margin-bottom:35px;
}

/* YEAR ROW CARD */

.year-row{
    background:#f1f3f6;
    border-radius:22px;
    padding:26px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:22px;
    transition:0.2s;
}

.year-row:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,0.08);
}

.year-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.year-number{
    font-size:32px;
    font-weight:700;
    color:#111;
}

/* STATUS BADGES */

.badge {
    display: inline-block;
    margin-left: 10px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #4CAF50, #2ecc71);
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    animation: pulseBadge 1.8s infinite;
}

@keyframes pulseBadge {
    0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(76,175,80,0); }
    100% { transform: scale(1); }
}

/* BUTTONS */

.action-btn{
    padding:10px 22px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    font-size:14px;
    transition:.25s;
}

/* green like screenshot */
.action-btn.start,
.action-btn.continue{
    background:#8bc34a;
    color:#1b3a0b;
}

.action-btn.start:hover,
.action-btn.continue:hover{
    background:#7cb342;
}

/* completed */
.action-btn.view{
    background:#e0e0e0;
    color:#333;
}
