/* Validation Styles */
.error .form-control {
    border-color: #ff4444 !important;
    box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.1) !important;
}

.validation-message {
    color: #ff4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    min-height: 1rem;
}

/* Autocomplete Styles */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border: 1px solid var(--vibrant-blue);
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.autocomplete-dropdown div {
    padding: 8px 12px;
    cursor: pointer;
    color: var(--text-primary);
}

.autocomplete-dropdown div:hover {
    background: var(--vibrant-blue);
    color: white;
}

.param-group.error input {
    border-color: #dc3545;
}

.param-group.error .validation-message {
    display: block;
}

.param-group {
    position: relative;
}
