/* ============================================
   DASHBOARD STYLES
   ============================================ */

.stat-card-dash {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.stat-card-dash:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.dashboard-card a {
    color: inherit;
}

.dashboard-card h4 {
    color: #1e293b;
}

.dashboard-card p {
    color: #64748b;
}
