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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Select2 Bootstrap 4 Integration & Dark/Light Theme Support */
.select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px) !important; /* standard bootstrap 4 input height */
    padding: 0.375rem 0.75rem !important;
    border-radius: 2px !important;
    display: flex !important;
    align-items: center !important;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Light Theme styles (Default) */
body[data-theme="light"] .select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid #e9ecef !important;
    color: #3e5569 !important;
}
body[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #3e5569 !important;
}
body[data-theme="light"] .select2-dropdown {
    background-color: #fff !important;
    border: 1px solid #e9ecef !important;
    color: #3e5569 !important;
}
body[data-theme="light"] .select2-search__field {
    background-color: #fff !important;
    border: 1px solid #e9ecef !important;
    color: #3e5569 !important;
}
body[data-theme="light"] .select2-results__option {
    color: #3e5569 !important;
}
body[data-theme="light"] .select2-results__option--highlighted[aria-selected] {
    background-color: #2962ff !important;
    color: #fff !important;
}
body[data-theme="light"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #3e5569 transparent transparent transparent !important;
}
body[data-theme="light"] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #3e5569 transparent !important;
}

/* Dark Theme styles */
body[data-theme="dark"] .select2-container--default .select2-selection--single {
    background-color: #2f353e !important; /* match dark input background */
    border: 1px solid #3d4652 !important;
    color: #b2becd !important;
}
body[data-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #b2becd !important;
}
body[data-theme="dark"] .select2-dropdown {
    background-color: #23272f !important;
    border: 1px solid #3d4652 !important;
    color: #b2becd !important;
}
body[data-theme="dark"] .select2-search__field {
    background-color: #2f353e !important;
    border: 1px solid #3d4652 !important;
    color: #b2becd !important;
}
body[data-theme="dark"] .select2-results__option {
    color: #b2becd !important;
}
body[data-theme="dark"] .select2-results__option--highlighted[aria-selected] {
    background-color: #2962ff !important;
    color: #fff !important;
}
body[data-theme="dark"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #b2becd transparent transparent transparent !important;
}
body[data-theme="dark"] .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #b2becd transparent !important;
}

/* Common fixes */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 8px !important;
    display: flex !important;
    align-items: center !important;
}
.select2-container {
    width: 100% !important;
}
.select2-search--dropdown {
    padding: 8px !important;
}
.select2-search--dropdown .select2-search__field {
    padding: 6px 10px !important;
    border-radius: 2px !important;
}
/* Ensure it looks premium with smooth shadows */
.select2-dropdown {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}