/* Base styles */
body {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f7fa;
}

/* Utility classes */
.content {
    padding-top: 1.5rem;
    min-height: calc(100vh - 60px);
}

/* Card styles */
.card {
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
