/* =========================
   BOOTSTRAP FORM OVERRIDE
   ========================= */

/* Inputs */
.form-control {
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    color: #495057;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.375rem;
    box-shadow: none !important;
}

/* Select (NEEDS stronger selector) */
.form-select,
select.form-select {
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    color: #495057;
    font-size: 0.875rem;
    padding: 0.5rem 2.25rem 0.5rem 0.75rem !important;
    border-radius: 0.375rem;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.5;
}

/* Focus */
.form-control:focus,
.form-select:focus {
    border-color: #5e72e4 !important;
    box-shadow: 0 0 0 0.15rem rgba(94, 114, 228, 0.25) !important;
}

/* Textarea */
textarea.form-control {
    resize: vertical;
}

/* Disabled */
.form-control:disabled,
.form-select:disabled {
    background-color: #e9ecef !important;
}

/* Placeholder */
.form-control::placeholder {
    color: #adb5bd;
}

/* Fix select arrow */
.form-select {
    background-position: right 0.75rem center;
}
/* =========================
   END BOOTSTRAP FORM OVERRIDE
   ========================= */

