 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

#stats-cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

#stats-dashboard .year-card {
    background-color: #f5f5f5;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #dfd7ca;
}

#stats-dashboard .year-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #152972, #1C2C73, #3a4e92, #2d438a);
    background-size: 300% 100%;
    animation: stats-gradientShift 4s ease infinite;
}

#stats-dashboard .year-header {
    text-align: center;
    justify-content: center;
}

#stats-dashboard .year-title {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(135deg, #1C2C73 70%, #253b99 30%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#stats-dashboard .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

#stats-dashboard .metric-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px 8px;
    background: rgba(254, 255, 255, 0.959);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#stats-dashboard .metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #152972, #1C2C73, #3a4e92, #2d438a);
    background-size: 300% 100%;
    animation: stats-gradientShift 4s ease infinite;
}

#stats-dashboard .metric-label {
    font-family: 'Roboto';
    font-size: 13px;
    color: #333b46;
    font-weight: 600;
    margin-bottom: 4px;
}

#stats-dashboard .metric-value {
    font-size: 15px;
    font-family: 'Roboto';
    font-weight: 700;
    color: #1e293b;
    white-space: nowrap;
}

#stats-dashboard .progress-section {
    margin-top: 20px;
}

#stats-dashboard .progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#stats-dashboard .progress-label {
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

#stats-dashboard .progress-percentage {
    font-weight: 800;
    font-size: 15px;
}

#stats-dashboard .progress-percentage.acceptance-bar {
    color: #547896;
    background: transparent;
}

#stats-dashboard .progress-percentage.rejection-bar {
    color: #0c6ecf;
    font-size: 1.4rem;
    background: transparent;
}

#stats-dashboard .progress-bar-container {
    height: 12px;
    background: rgba(254, 255, 255, 0.959);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
}

#stats-dashboard .progress-bar {
    height: 100%;
    border-radius: 10px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#stats-dashboard .acceptance-bar {
    background: linear-gradient(135deg, #547896, #5085b3);
}

#stats-dashboard .rejection-bar {
    background: linear-gradient(135deg, #0c6ecf, #00a6ff);
    position: relative;
    overflow: hidden;
}

#stats-dashboard .rejection-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: stats-rejectShine 3s infinite;
}

@keyframes stats-gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes stats-rejectShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@media (max-width: 768px) {
    #stats-cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #stats-dashboard .metrics-grid {
        grid-template-columns: 1fr;
    }

    #stats-dashboard .year-card {
        padding: 20px;
    }

    #stats-dashboard .year-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    #stats-dashboard .metrics-grid {
        grid-template-columns: 1fr;
    }

    #stats-dashboard .stat-number {
        font-size: 1.2rem;
    }

    #stats-dashboard .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
        word-wrap: break-word;
        text-align: center;
    }

    #stats-dashboard .col-6 {
        padding: 15px 10px;
    }
}