/* Contact Form Select Field Fixes */

/* Style the select dropdown to look proper */
.contact-form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Fix select option styling */
.contact-form-select option {
    padding: 0.5rem;
    background-color: white;
    color: #1f2937;
}

/* Ensure proper height and alignment */
.contact-form-input {
    min-height: 2.75rem;
    line-height: 1.5;
}

/* Focus state for select */
.contact-form-select:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: rgb(34 197 94);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Hover state */
.contact-form-select:hover {
    border-color: rgb(107 114 128);
}

/* Fix select dropdown arrow positioning */
select.contact-form-select {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
}