.rq-container {
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.rq-title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
}

.rq-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.rq-form-row-bottom {
    margin-bottom: 0;
    align-items: flex-end;
}

.rq-field {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.rq-label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.rq-input-wrapper,
.rq-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.rq-icon {
    position: absolute;
    left: 12px;
    color: #666;
    font-size: 14px;
    pointer-events: none;
}

.rq-select-icon {
    position: absolute;
    right: 12px;
    color: #666;
    font-size: 12px;
    pointer-events: none;
}

.rq-input,
.rq-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #555;
    outline: none;
    box-sizing: border-box;
    height: 45px;
    transition: border-color 0.2s ease;
}

.rq-input-with-icon {
    padding-left: 35px;
}

.rq-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 30px;
}

.rq-input::placeholder {
    color: #999;
}

.rq-button-field {
    flex: 1;
    min-width: 200px;
    display: flex;
}

.rq-btn {
    width: 100%;
    height: 45px;
    background-color: #457b8a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.rq-btn:hover {
    opacity: 0.9;
}

/* Autocomplete Dropdown Styles */
.rq-autocomplete-wrapper {
    position: relative;
}

.osm-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
}

.osm-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.osm-suggestions li:last-child {
    border-bottom: none;
}

.osm-suggestions li:hover {
    background-color: #f9f9f9;
    color: #1a1a1a;
}

@media (max-width: 991px) {
    .rq-form-row {
        flex-direction: column;
        gap: 15px;
    }
    .rq-form-row-bottom {
        align-items: stretch;
    }
}