﻿.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}


.location-modal-header {
    margin-bottom: 24px;
}

    .location-modal-header h2 {
        color: #1a1a1a;
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

.location-current-location {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.location-change-city {
    color: #0052CC;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .location-change-city img {
        margin-left: 8px;
        width: 16px;
        height: 16px;
    }

.location-form-group {
    margin-bottom: 16px;
}

    .location-form-group label {
        display: block;
        color: #1a1a1a;
        font-size: 14px;
        margin-bottom: 8px;
    }

.location-form-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    color: #1a1a1a;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

    .location-form-select:disabled {
        background-color: #f5f5f5;
        cursor: not-allowed;
    }

.location-btn {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-bottom: 12px;
}

.location-btn-outline {
    background-color: transparent;
    border: 1px solid #0052CC;
    color: #0052CC;
}

.location-btn-primary {
    background-color: #0052CC;
    border: none;
    color: white;
}

.location-btn-secondary {
    background-color: #f5f5f5;
    border: none;
    color: #666;
}

.location-distance-section {
    margin: 24px 0;
}

.location-distance-label {
    color: #0052CC;
    font-size: 14px;
    margin-bottom: 12px;
}

.location-distance-slider {
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    appearance: none;
}

    .location-distance-slider::-webkit-slider-thumb {
        appearance: none;
        width: 16px;
        height: 16px;
        background: #0052CC;
        border-radius: 50%;
        cursor: pointer;
    }

    .location-distance-slider::-moz-range-thumb {
        width: 16px;
        height: 16px;
        background: #0052CC;
        border-radius: 50%;
        cursor: pointer;
        border: none;
    }

.location-divider {
    text-align: center;
    color: #666;
    margin: 16px 0;
    font-size: 14px;
}

.location-modal-footer {
    margin-top: 24px;
}
