@tailwind base;
@tailwind components;
@tailwind utilities;

/* Force all fields to use light-mode colors in ALL modes */
input,
select,
textarea {
    background-color: #ffffff !important; /* Always white background */
    color: #000000 !important; /* Always black text */
    border: 1px solid #d1d5db !important; /* Light border */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    caret-color: auto;
}

    /* Ensure placeholder is visible */
    input::placeholder,
    textarea::placeholder {
        color: #6b7280 !important; /* gray-500 */
    }

    /* Focus ring */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none !important;
        box-shadow: 0 0 0 2px #7b2612 !important; /* Etrucia ring */
    }






/*@tailwind base;
@tailwind components;
@tailwind utilities;
*/
/* Universal input styling for light/dark modes */
/*input,
select,
textarea {
    @apply bg-white text-black dark:bg-gray-900 dark:text-white border border-gray-300 dark:border-gray-600 rounded-md shadow-sm;
}

    input:focus,
    select:focus,
    textarea:focus {
        @apply outline-none ring-2 ring-etrucia dark:ring-etruciaLight;
    }

    input::placeholder,
    textarea::placeholder {
        @apply text-gray-400 dark:text-gray-500;
    }*/

/* Ensures visible blinking cursor */
/*input,
textarea {
    caret-color: auto;
}*/




/*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;
}*/