.native-city-selector {
    margin: 20px 0;
    padding: 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.native-city-selector-inner {
    max-width: 600px;
    margin: 0 auto;
}

.native-city-selector-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.native-city-selector-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.native-city-selector-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8fafc;
    border-radius: 8px;
    font-weight: 500;
    color: #475569;
}

.native-current-icon {
    font-size: 20px;
}

.native-current-name {
    font-size: 14px;
}

.native-city-selector-content {
    position: relative;
}

.native-city-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #1e293b;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.native-city-select:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.native-city-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.native-city-select option {
    padding: 10px;
    font-size: 15px;
}

.native-city-selector.alignwide {
    max-width: 1200px;
}

.native-city-selector.alignfull {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .native-city-selector {
        padding: 15px;
        margin: 15px 0;
    }
    
    .native-city-selector-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .native-city-selector-title {
        font-size: 16px;
    }
    
    .native-city-selector-current {
        width: 100%;
        justify-content: space-between;
    }
    
    .native-city-select {
        padding: 12px 45px 12px 14px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .native-city-selector {
        padding: 12px;
        border-radius: 8px;
    }
    
    .native-city-selector-title {
        font-size: 14px;
    }
    
    .native-city-selector-current {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .native-city-select {
        padding: 10px 40px 10px 12px;
        font-size: 13px;
    }
}