/* Shared dashboard card system — source of truth: admin/home */
.dashboard-container {
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-section-header {
    color: #0a2e4c;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.dashboard-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: white;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
}

.card-title-custom {
    color: #0a2e4c;
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title-custom i {
    color: #f7b733;
    margin-right: 1rem;
    font-size: 2rem;
}

.card-text-custom {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-custom-primary {
    background: linear-gradient(135deg, #0a2e4c 0%, #1e3c72 100%);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-custom-primary:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #0a2e4c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 46, 76, 0.3);
    color: white;
}
