/* Custom Form Input Styling */
.gasdi-input-field {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    width: 100%;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.gasdi-input-field:focus {
    border-color: #3b82f6; /* Blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    outline: none;
}
textarea.gasdi-input-field {
    min-height: 100px;
}

/* Custom Checkbox/Radio Styling */
.gasdi-checkbox-group label {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    cursor: pointer;
}
.gasdi-checkbox-group input[type="checkbox"],
.gasdi-checkbox-group input[type="radio"] {
    margin-right: 0.5rem;
    width: auto;
    /* Ensure colors match Tailwind colors used in HTML */
    border-radius: 0.25rem; 
}

/* Section Header Accent */
.gasdi-section-header {
    border-left: 5px solid #10b981; /* Emerald green accent */
    padding-left: 0.75rem;
    margin-bottom: 1rem;
}

/* Base Wrapper for layout consistency */
.gasdi-form-wrapper {
    background-color: #ffffff;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .gasdi-form-wrapper {
        padding: 1rem;
        margin: 1rem auto;
    }
}