/* Container */
#rx-header-location-container,
.rx-location-box-shortcode {
    max-width: 350px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    position: relative;
}

/* Input styling */
#rx-header-location-container input,
.rx-location-box-shortcode input {
    width: 100%;
    height: 48px;
    padding: 0 20px 0 45px; /* left padding for search icon */
    font-size: 16px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

#rx-header-location-container input::placeholder,
.rx-location-box-shortcode input::placeholder {
    color: #999;
    font-weight: 400;
}

#rx-header-location-container input:focus,
.rx-location-box-shortcode input:focus {
    border-color: #2c7be5;
    box-shadow: 0 0 10px rgba(44,123,229,0.25);
}

/* Search icon inside input */
#rx-header-location-container::before,
.rx-location-box-shortcode::before {
    content: "\f002"; /* FontAwesome search icon */
    font-family: FontAwesome;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    #rx-header-location-container,
    .rx-location-box-shortcode {
        max-width: 100%;
        margin: 10px auto;
    }
}
