/**
 * Frontend Styles
 */

/* Change Location Button */
.wploc-change-location {
    display: inline-block;
    cursor: pointer;
}

/* Current Location Display */
.wploc-current-location {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.wploc-current-location .wploc-icon {
    font-size: 16px;
}

/* Location Selector Widget */
.wploc-location-selector {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 20px 0;
}

.wploc-current-location-display {
    margin-bottom: 15px;
    font-size: 15px;
}

.wploc-current-location-display strong {
    display: block;
    margin-bottom: 5px;
}

/* Status Indicators */
.wploc-status-active {
    color: #27ae60;
    font-weight: 600;
}

.wploc-status-inactive {
    color: #e74c3c;
    font-weight: 600;
}

/* Utility Classes */
.wploc-hidden {
    display: none !important;
}

.wploc-text-center {
    text-align: center;
}

.wploc-mb-10 {
    margin-bottom: 10px;
}

.wploc-mb-20 {
    margin-bottom: 20px;
}

/* WooCommerce Integration */
.woocommerce .wploc-change-location {
    margin: 10px 0;
}

.woocommerce-info.wploc-location-notice {
    border-top-color: var(--wploc-primary, #e74c3c);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wploc-location-selector {
        padding: 15px;
    }
}
