:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --bg-light: #f4f6f9;
}

body {
    background-color: var(--bg-light);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
}

.bg-primary-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #0a48a3 100%);
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #0d6efd 0%, #1e3c72 100%);
}

/* Styling Khusus Logo agar Selalu Rapi & Terlihat */
.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    background: white;
    padding: 2px;
}

.card-custom {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary-custom {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.btn-primary-custom:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: white;
}

.small-badge {
    font-size: 0.72rem;
    padding: 4px 8px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .brand-logo {
        height: 32px;
    }
    .card-custom {
        padding: 18px !important;
    }
}