.error-text {
    color: #ef4444;
    display: none;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #00a9f4;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}

#contactForm .input-error {
    border-top-color: #a94442;
    border-left-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.contactForm .input-error {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.searchable-select {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: white;
    font-size: 1rem;
    color: #555;
    outline: none;
    transition: all 0.2s;
}

.options-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 2px 2px;
    z-index: 100;
    display: none;
}

.option-item {
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #555;
}

.option-item:hover {
    background-color: #f0f0f0;
}

.options-container::-webkit-scrollbar {
    width: 6px;
}

.options-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}