﻿/* Dashboard Styles */
.welcome-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
}

    .welcome-header h1 {
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

.dashboard-card {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
    overflow: hidden;
}

    .dashboard-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

.dashboard-card-body {
    padding: 1.5rem;
}

.dashboard-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.dashboard-stats {
    text-align: right;
}

    .dashboard-stats h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0;
    }

    .dashboard-stats p {
        margin-bottom: 0;
        font-weight: 500;
        opacity: 0.9;
    }

.dashboard-card-footer {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
}

    .dashboard-card-footer a {
        text-decoration: none;
        font-size: 0.875rem;
    }



