/* Location Selection Component Styles */

/* Search Input */
.location-search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.location-search-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Selection Container */
.location-selection-container {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    padding: 10px;
    background: #fafafa;
    border-radius: 6px;
}

/* Area Tags */
.location-area-tag {
    display: inline-flex;
    flex-direction: column;
    margin: 5px;
    padding: 10px 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    user-select: none;
}

.location-area-tag-name {
    font-weight: 600;
    color: #333;
}

.location-area-tag-details {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}

.location-area-tag-details i {
    font-size: 10px;
    margin-right: 3px;
}

.location-area-tag.selected {
    background: linear-gradient(135deg, #ff7700, #ff9933);
    border-color: #ff7700;
    box-shadow: 0 2px 8px rgba(255, 119, 0, 0.3);
}

.location-area-tag.selected .location-area-tag-name,
.location-area-tag.selected .location-area-tag-details {
    color: white !important;
}

.location-area-tag.selected .location-area-tag-details i {
    color: white !important;
}

/* City Tags */
.location-city-tag {
    display: inline-flex;
    flex-direction: column;
    margin: 5px;
    padding: 10px 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    user-select: none;
}

.location-city-tag-name {
    font-weight: 600;
    color: #333;
}

.location-city-tag-details {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}

.location-city-tag-details i {
    font-size: 10px;
    margin-right: 3px;
}

.location-city-tag.selected {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.location-city-tag.selected .location-city-tag-name,
.location-city-tag.selected .location-city-tag-details {
    color: white !important;
}

.location-city-tag.selected .location-city-tag-details i {
    color: white !important;
}

/* State Tags */
.location-state-tag {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    user-select: none;
    font-weight: 600;
    color: #333;
}

.location-state-tag.selected {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    color: white !important;
}
