body {
    font-family: 'Roboto', 'Inter', sans-serif;
    background-color: #f0ebf8;
    /* Google Forms background */
    min-height: 100vh;
    padding: 0;
    padding-bottom: 0;
    /* Remove padding-bottom as footer will handle spacing */
    display: flex;
    flex-direction: column;
}

.google-form-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Base Card Style */
.google-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #dadce0;
    margin-bottom: 12px;
    padding: 24px;
    position: relative;
    background-color: #fff;
    transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-card:hover {
    /* box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15); */
}

/* Header Card Specifics */
.google-card.header-card {
    border-top: 10px solid #673ab7;
    /* Google Forms Purple */
    padding-top: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #202124;
    margin-bottom: 12px;
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
}

.form-description {
    font-size: 14px;
    color: #5f6368;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Form Sections/Questions */
.section-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 0;
    /* Handled by card padding */
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 16px;
    display: block;
}

/* Input Styling to mimic Google Forms */
.form-control,
.form-select {
    border: none;
    border-bottom: 1px solid #dadce0;
    /* Default underline */
    border-radius: 0;
    padding: 8px 0;
    background-color: transparent;
    font-size: 14px;
    color: #202124;
    transition: border-bottom-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
    /* Remove Bootstrap shadow */
}

.form-control:focus,
.form-select:focus {
    border-bottom: 2px solid #673ab7;
    /* Purple underline on focus */
    background-color: transparent;
    /* Keep transparent */
    outline: none;
    box-shadow: none;
}

/* Remove default focus ring from bootstrap */
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.form-control::placeholder {
    color: #70757a;
    font-style: normal;
}

/* Validation */
.is-invalid {
    border-bottom: 1px solid #d93025 !important;
}

.invalid-feedback {
    font-size: 12px;
    color: #d93025;
    margin-top: 8px;
    display: block;
    /* Ensure it shows */
}

/* Submit Button */
.btn-submit {
    background-color: #673ab7;
    color: white;
    padding: 10px 24px;
    font-family: 'Google Sans', 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .25px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color .2s;
    float: left;
    /* Align left like Google Forms usually does or block */
    width: auto;
    /* Not full width */
}

.btn-submit:hover {
    background-color: #5e35b1;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

/* Required Asterisk */
.required-asterisk {
    color: #d93025;
    margin-left: 4px;
}

/* Navbar overrides removed to use unified layout */

/* Select2 overrides */
.select2-container--default .select2-selection--single {
    border: none !important;
    border-bottom: 1px solid #dadce0 !important;
    border-radius: 0 !important;
    height: 38px;
    background-color: transparent;
}

.select2-container--default .select2-selection--single:focus-within {
    border-bottom: 2px solid #673ab7 !important;
}

/* Flatpickr overrides */
.flatpickr-input {
    background-color: transparent !important;
}