.dls-location-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--dls-gap, 15px);
    width: 100%;
}

.dls-location-wrapper[data-layout="row"] {
    flex-direction: row;
    flex-wrap: wrap;
}

.dls-location-wrapper[data-layout="row"] .dls-field-wrap {
    flex: 1;
    min-width: 200px;
}

.dls-location-wrapper[data-layout="column"] {
    flex-direction: column;
}

.dls-location-wrapper[data-layout="column"] .dls-field-wrap {
    width: 100%;
}

.dls-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dls-field-label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.dls-location-wrapper select.dls-country,
.dls-location-wrapper select.dls-state,
.dls-location-wrapper select.dls-city {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    appearance: none;
    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='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.dls-location-wrapper select:focus {
    outline: none;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.dls-location-wrapper select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dls-location-wrapper[data-layout="row"] {
        flex-direction: column;
    }
    
    .dls-location-wrapper[data-layout="row"] .dls-field-wrap,
    .dls-location-wrapper[data-layout="column"] .dls-field-wrap {
        width: 100%;
        min-width: 100%;
    }
    
    .dls-location-wrapper select.dls-country,
    .dls-location-wrapper select.dls-state,
    .dls-location-wrapper select.dls-city {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .dls-location-wrapper[data-layout="row"] .dls-field-wrap {
        min-width: 180px;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    .dls-location-wrapper[data-layout="row"] .dls-field-wrap {
        min-width: 250px;
    }
}
