:root {
    --mepj-primary: #1a4d8c;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.navbar.bg-primary {
    background-color: var(--mepj-primary) !important;
}

main {
    flex: 1;
}

fieldset[disabled] {
    opacity: 0.55;
    pointer-events: none;
}

fieldset:not([disabled]) {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.card {
    border: none;
    border-radius: 0.5rem;
}

.card-header {
    font-weight: 600;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--mepj-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 77, 140, 0.15);
}

.admin-layout .table {
    font-size: 0.9rem;
}

code {
    font-size: 0.85em;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 0.95rem;
    }

    .display-6 {
        font-size: 1.75rem;
    }
}