/**
 * Shortcode styles for Gutz Location Filter
 */

/* Base shortcode container */
.glf-shortcode-selector {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
}

/* Common label styling */
.glf-shortcode-selector label {
    margin: 0;
    font-weight: 500;
    color: inherit;
}

/* Common select styling */
.glf-shortcode-selector select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.glf-shortcode-selector select:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.glf-shortcode-selector select:hover {
    border-color: #999;
}

/* Default layout (vertical) */
.glf-shortcode-selector select {
    width: 100%;
    max-width: 250px;
}

/* Form styling */
.glf-shortcode-form {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
}



/* Responsive adjustments */
@media (max-width: 480px) {
    .glf-shortcode-selector select {
        max-width: 200px;
    }
}
