/* ===== DASHBOARD SPECIFIC STYLES ===== */
.dashboard-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.dashboard-header {
    margin-bottom: 30px;
    text-align: center;
}

.dashboard-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    border-bottom: none;
}

.dashboard-header p {
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== DASHBOARD GRID ===== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* ===== STAT CARDS ===== */
.stat-card {
    text-align: center;
    padding: 25px 15px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 10px 0;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    color: var(--success);
    font-weight: 600;
}

/* ===== CHART CONTAINERS ===== */
.chart-container {
    height: 250px;
    position: relative;
    margin-top: 15px;
}

/* ===== HOSPITAL CARDS ===== */
.hospital-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hospital-info {
    padding: 20px;
    flex-grow: 1;
}

.hospital-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.hospital-certification {
    display: inline-block;
    background-color: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.hospital-features {
    list-style-type: none;
    margin: 15px 0;
}

.hospital-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hospital-features li:last-child {
    border-bottom: none;
}

.hospital-features i {
    color: var(--secondary);
}

/* ===== NAVIGATION CARDS ===== */
.nav-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.nav-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary);
}

.nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent);
}

.nav-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.nav-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.nav-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .dashboard-header h2 {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .dashboard-container {
        margin: 30px auto;
    }
}