.re-search-wrapper {
    width: 100%;
}

.re-search-bar {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 10px 14px;
    box-sizing: border-box;
    width: 100%;
    gap: 12px;
    border: 1px solid rgba(0,0,0,0.04);
}

.re-field {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.re-field select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    color: #333;
    padding: 10px 24px 10px 10px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.re-field-location select {
    padding-left: 36px;
}

.re-icon-pin {
    position: absolute;
    left: 10px;
    width: 18px;
    height: 18px;
    color: #1e3a8a;
    pointer-events: none;
}

.re-icon-chevron {
    position: absolute;
    right: 10px;
    width: 16px;
    height: 16px;
    color: #666;
    pointer-events: none;
}

.re-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.08);
}

.re-field-button {
    flex-shrink: 0;
}

.re-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.re-search-btn:hover {
    background-color: #14285f;
}

.re-icon-search {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* Tablet & Mobile responsive behavior */
@media (max-width: 768px) {
    .re-search-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        height: auto;
    }

    .re-divider {
        display: none;
    }

    .re-field select {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 12px 30px 12px 12px;
    }

    .re-field-location select {
        padding-left: 36px;
    }

    .re-search-btn {
        width: 100%;
        padding: 14px;
    }
}
