/**
 * MSTR Enhancements - Frontend Styles (Aggregator)
 *
 * This file imports all individual stylesheets for convenience.
 * Individual files: mstr-expired.css, mstr-upgrade-prompt.css, mstr-google-hide.css
 *
 * Also includes: proximity search fields styles.
 *
 * @package MSTR_Enhancements
 */

/* ==========================================================================
   PROXIMITY SEARCH FIELDS
   ========================================================================== */

.mstr-proximity-fields {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.mstr-proximity-fields label {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.mstr-proximity-fields select {
    min-width: 120px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 600px) {
    .mstr-proximity-fields {
        flex-direction: column;
        align-items: stretch;
    }
}
