html {
    overflow-y: scroll;
}

[id^="message-"] {
    transition: opacity 0.5s ease;
}

/* Custom select dropdown styling for better arrow spacing */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
select:not([size]){
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right .75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem;
}

/* Form field alignment - ensure all form fields in the same row align perfectly */
.form-field-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.form-field-container label {
    margin-bottom: 0.25rem;
    height: 1.25rem; /* Fixed height for all labels */
    display: flex;
    align-items: flex-end;
}

.form-field-container select,
.form-field-container input {
    height: 3.5rem; /* Fixed height for all inputs */
    display: flex;
    align-items: center;
}
