:root {
    --admin-sidebar-active: #3d4e60;
}
    html {
    font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


/* ===== Select2 Bootstrap 5 Modern Look ===== */
.select2-container--default .select2-selection--single {
    height: 38px;
    border: 1px solid #ced4da !important;
    border-radius: 0.5rem !important;
    background-color: #fff;
    padding: 4px 10px;
    transition: all 0.2s ease-in-out;
}

/* Hover effect */
.select2 .select2-selection--single:hover {
    border-color: #86b7fe !important;
}

/* Focus state (important for UX) */
.select2 .select2-container--focus .select2-selection--single {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,.25);
}

/* Text alignment */
.select2 .select2-selection--single .select2-selection__rendered {
    line-height: 30px;
    color: #495057;
    font-size: 0.95rem;
}

/* Arrow alignment */
.select2 .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

/* Dropdown */
.select2-dropdown {
    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Search box */
.select2-search--dropdown .select2-search__field {
    border-radius: 0.4rem;
    border: 1px solid #ced4da;
    padding: 6px;
}

/* Highlighted item */
.select2-results__option--highlighted {
    background-color: #0d6efd !important;
    color: white !important;
}


/*toast notifications*/
.toast-success {
    background-color: #e8f5e9 !important;
    color: #1b5e20 !important;
    border-left: 5px solid #28a745;
}

.toast-error {
    background-color: #ffebee !important;
    color: #b71c1c !important;
    border-left: 5px solid #dc3545;
}

.toast-warning {
    background-color: #fff8e1 !important;
    color: #8a6d3b !important;
    border-left: 5px solid #ffc107;
}

.toast-info {
    background-color: #e3f2fd !important;
    color: #0c5460 !important;
    border-left: 5px solid #17a2b8;
}

.sidebar a.active {
    background-color: var(--admin-sidebar-active);
    color: #ffffff;
    font-weight: 600;
    border-bottom: 3px solid var(--ipn-primary);
    position: relative;
}


body {
    background: #f4f6f9;
    overflow-x: hidden;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    min-height: 100vh;
    background: #0b3d91;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
}

.sidebar a {
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
}

.sidebar a:hover {
    background: rgba(255,255,255,0.15);
}

/* TOPBAR */
.topbar {
    margin-left: 260px;
    background: white;
    padding: 10px 20px;
    border-bottom: 1px solid #ddd;
}

/* CONTENT */
.main-content {
    margin-left: 260px;
    padding: 20px;
}

.badge-ministry {
    background: #1e88e5;
    color: white;
}