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;
}

select,
.form-select {
    color: #111 !important;
    background: #fff !important;
    -webkit-text-fill-color: #111 !important; /* كروم */
    appearance: auto !important;
    -webkit-appearance: menulist !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

    /* عناصر الخيارات نفسها */
    select option,
    optgroup {
        color: #111 !important;
        background: #fff !important;
        -webkit-text-fill-color: #111 !important;
    }

/* في حال كان عندك ثيم داكن يفرض body-color أبيض */
[data-bs-theme="dark"] select,
[data-bs-theme="dark"] .form-select,
[data-bs-theme="dark"] select option,
[data-bs-theme="dark"] optgroup {
    color: #111 !important;
    background: #fff !important;
    -webkit-text-fill-color: #111 !important;
}

/* لو كان هناك ستايل عام جعل النص شفافًا */
select, option {
    opacity: 1 !important;
}