﻿.page-header {
    background: linear-gradient(135deg, #00695C, #00897B);
    color: white;
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 30px;
    box-shadow: 0 15px 45px rgba(37,99,235,.25);
    overflow: hidden;
    position: relative;
}

    .page-header::before {
        content: "";
        position: absolute;
        right: -100px;
        top: -100px;
        width: 260px;
        height: 260px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
    }

.page-title {
    font-size: 34px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 15px;
    opacity: .9;
    margin-top: 8px;
}

.dashboard-card {
    background: white;
    border: none;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 25px;
    transition: .35s;
    height: 100%;
}

    .dashboard-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}

.icon-green {
    background: #dcfce7;
    color: #10b981;
}

.icon-orange {
    background: #fef3c7;
    color: #f59e0b;
}

.icon-red {
    background: #fee2e2;
    color: #ef4444;
}

.stat-title {
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    margin-top: 8px;
}

.card-footer-text {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
}
.container{
    max-width:100%;
}