@import "core.css";
/* Dashboard styling */

.dashboard-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
    text-decoration: none;
}

.dashboard-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.dashboard-card:hover .dashboard-card-icon {
    transform: scale(1.1);
}

.dashboard-card-icon i {
    color: #fff;
    font-size: 1.5rem;
}

.dashboard-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.dashboard-card-description {
    font-size: 0.875rem;
    color: var(--primary-gray);
    margin: 0;
}

.dashboard-card:hover .dashboard-card-title {
    color: var(--primary-blue);
}