body, .content-body {
    font-size: 1.25rem;
    background: #f8fafc;
    color: #222;
}
.custom-dashboard {
    text-align: center;
    margin-top: 2rem;
}
.dashboard-logo {
    width: 120px;
    margin-bottom: 1.5rem;
}
.dashboard-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.dashboard-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2rem 2.5rem;
    text-decoration: none;
    color: #333;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.dashboard-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px) scale(1.04);
    color: #007bff;
}
.dashboard-card i {
    margin-bottom: 1rem;
}
.dashboard-welcome {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
}
.sidebar {
    font-size: 1.2rem;
}
