body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: #1e293b;
}

.card {
    transition: all 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border: none;
    min-height: 240px;
    padding: 1.5rem;
    background-color: #ffffff;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.15), 0 10px 20px -10px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Custom scroll bar */
body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body::-webkit-scrollbar-track {
    background: #f1f5f9;
}

body::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 20px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Fix for missing gaps between components */
.row.g-6 > [class*="col-"] {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .row.g-6 > [class*="col-"] {
        margin-bottom: 1rem;
    }
}
