:root {
    --primary-color: #0d6efd;
    --primary-contrast: #0a58ca;
}

body {
    background-color: #f5f6fa;
    min-height: 100vh;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -24px rgba(13, 110, 253, 0.35);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-contrast));
    color: #fff;
    font-size: 24px;
}

.table-responsive {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px -20px rgba(0, 0, 0, 0.35);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.badge-soft {
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 1rem;
    }

    .navbar .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}
