/* DASHBOARD GRID */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* DASHBOARD CARD */
.dash-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,255,255,0.08);
}

/* hover effect */
.dash-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,255,255,0.25);
}

/* NUMBERS */
.dash-number {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LABEL UNDER NUMBER */
.dash-label {
    color: var(--gray);
    font-size: 0.95rem;
}

/* PROGRESS BARS */
.progress-bar-box {
    margin: 2rem 0;
}

.progress-bar-box span {
    font-weight: bold;
    color: var(--light);
}

.bar-bg {
    width: 100%;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-top: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 20px;
    transition: width 1s ease-out;
}

/* PDF CARDS */
.pdf-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pdf-card {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
}