/* ===================================
   Page de collecte de données
   =================================== */

/* Container principal */
.collect-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 1rem;
}

.collect-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   En-tête
   =================================== */
.collect-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-logo img {
    width: 80px;
    height: auto;
}

.header-info h1 {
    font-size: 1.75rem;
    margin: 0 0 0.5rem 0;
    color: var(--primary, #667eea);
}

.student-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin: 0 0 0.25rem 0;
}

.session-info {
    font-size: 0.95rem;
    color: var(--text-muted, #718096);
    margin: 0;
}

/* ===================================
   Indicateur de progression
   =================================== */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: white;
    color: var(--primary, #667eea);
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.progress-step.completed .step-circle {
    background: #48bb78;
    border-color: #48bb78;
}

.step-circle .material-symbols-outlined {
    font-size: 28px;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.progress-step.active .step-label {
    color: white;
    font-weight: 600;
}

.progress-line {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.progress-line.completed {
    background: #48bb78;
}

/* ===================================
   Messages flash
   =================================== */
.flash {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid transparent;
    animation: slideDown 0.4s ease-out;
}

.flash-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.flash-danger {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.flash .material-symbols-outlined {
    font-size: 1.4rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===================================
   Carte du formulaire
   =================================== */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.form-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--text-dark, #2d3748);
    margin: 0 0 0.5rem 0;
}

.form-header .material-symbols-outlined {
    font-size: 2rem;
    color: var(--primary, #667eea);
}

.form-description {
    color: var(--text-muted, #718096);
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   Sections du formulaire
   =================================== */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.form-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group-small {
    min-width: 150px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}

.required-asterisk {
    color: #e53e3e;
    margin-left: 0.25rem;
    font-weight: 700;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary, #667eea);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-control:hover {
    border-color: #cbd5e0;
}

/* Erreurs de formulaire */
.invalid-feedback {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

.form-control.is-invalid {
    border-color: #fc8181;
    background-color: #fff5f5;
}

/* Texte d'aide */
.form-text {
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: block;
}

.text-muted {
    color: #718096;
}

/* ===================================
   Actions du formulaire
   =================================== */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary, #667eea);
    color: white;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn .material-symbols-outlined {
    font-size: 1.25rem;
}

/* ===================================
   Footer
   =================================== */
.collect-footer {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.collect-footer p {
    margin: 0;
}

/* ===================================
   Page d'expiration
   =================================== */
.expired-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    margin: 4rem auto;
}

.expired-icon {
    margin-bottom: 1.5rem;
}

.expired-icon .material-symbols-outlined {
    font-size: 5rem;
    color: #e53e3e;
}

.expired-card h1 {
    font-size: 1.75rem;
    color: var(--text-dark, #2d3748);
    margin: 0 0 1rem 0;
}

.expired-card p {
    color: var(--text-muted, #718096);
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.contact-info {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin: 0;
    color: var(--text-dark, #2d3748);
}

/* ===================================
   Activités collection (Step 3)
   =================================== */
.activities-collection {
    margin-top: 1.5rem;
    width: 100%;
}

.activities-collection [data-collection-target="container"] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    width: 100% !important;
    display: block;
}

.activity-input-wrapper {
    display: flex !important;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100% !important;
}

.activity-input-wrapper > div {
    flex: 1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.activity-input-wrapper > div > div {
    flex: 1 !important;
    width: 100% !important;
}

.activity-input-wrapper textarea,
.activity-input-wrapper .form-control {
    flex: 1 !important;
    min-height: 60px;
    resize: vertical;
    width: 100% !important;
    max-width: none !important;
}

.btn-delete-activity {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee;
    color: #c53030;
    border: 2px solid #feb2b2;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    align-self: flex-start;
}

.btn-delete-activity:hover {
    background: #fc8181;
    color: white;
    border-color: #fc8181;
    transform: scale(1.05);
}

.btn-delete-activity .material-symbols-outlined {
    font-size: 1.5rem;
}

.btn-add-activity {
    width: 100%;
    padding: 0.875rem;
    background: #f7fafc;
    color: var(--primary, #667eea);
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-add-activity:hover {
    background: white;
    border-color: var(--primary, #667eea);
    border-style: solid;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.btn-add-activity .material-symbols-outlined {
    font-size: 1.5rem;
}

.form-help-text {
    color: var(--text-muted, #718096);
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

/* Checkboxes group */
.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.form-check:hover {
    background: #edf2f7;
    border-color: #e2e8f0;
}

.form-check-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark, #2d3748);
    margin: 0;
    flex: 1;
}

/* ===================================
   Working Hours section (Step 3)
   =================================== */
.working-hours-section {
    margin-top: 1.5rem;
}

.days-selection {
    margin-bottom: 2rem;
}

.days-selection h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin: 0 0 1rem 0;
}

.days-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.day-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.day-checkbox:hover {
    background: #edf2f7;
    border-color: #e2e8f0;
}

.day-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.day-checkbox label {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark, #2d3748);
    margin: 0;
    flex: 1;
}

.day-checkbox input[type="checkbox"]:checked + label {
    color: var(--primary, #667eea);
    font-weight: 600;
}

.days-periods {
    margin-top: 2rem;
}

.day-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.day-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #667eea);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.periods-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.period-item {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.period-fields {
    display: grid;
    grid-template-columns: 1fr 1fr 48px;
    gap: 1rem;
    align-items: flex-end;
}

.period-field {
    display: flex;
    flex-direction: column;
}

.period-field label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-dark, #2d3748);
    margin-bottom: 0.5rem;
}

.period-field input {
    width: 100%;
}

.btn-delete-period {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fee;
    color: #c53030;
    border: 2px solid #feb2b2;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.btn-delete-period:hover {
    background: #fc8181;
    color: white;
    border-color: #fc8181;
    transform: scale(1.05);
}

.btn-delete-period .material-symbols-outlined {
    font-size: 1.5rem;
}

.btn-add-period {
    width: 100%;
    padding: 0.75rem;
    background: white;
    color: var(--primary, #667eea);
    border: 2px dashed #cbd5e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-add-period:hover {
    background: #f7fafc;
    border-color: var(--primary, #667eea);
    border-style: solid;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.btn-add-period .material-symbols-outlined {
    font-size: 1.25rem;
}

/* ===================================
   Summary section (Step 4)
   =================================== */
.summary-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-block {
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: white;
    border-bottom: 2px solid #e2e8f0;
}

.summary-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    margin: 0;
}

.summary-header .material-symbols-outlined {
    font-size: 1.5rem;
    color: var(--primary, #667eea);
}

.btn-edit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    color: var(--primary, #667eea);
    border: 2px solid var(--primary, #667eea);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-edit:hover {
    background: var(--primary, #667eea);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.btn-edit .material-symbols-outlined {
    font-size: 1.1rem;
    color: inherit;
}

.btn-edit:hover .material-symbols-outlined {
    color: white;
}

.summary-content {
    padding: 1.5rem;
}

.summary-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary, #667eea);
    margin: 1.5rem 0 1rem 0;
}

.summary-content h4:first-child {
    margin-top: 0;
}

.info-row {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--text-muted, #718096);
    min-width: 180px;
    flex-shrink: 0;
}

.info-value {
    color: var(--text-dark, #2d3748);
    flex: 1;
}

.activities-list {
    margin: 0;
    padding-left: 1.5rem;
    color: var(--text-dark, #2d3748);
}

.activities-list li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.hours-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.day-hours {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: var(--text-dark, #2d3748);
}

.day-hours strong {
    color: var(--primary, #667eea);
    margin-right: 0.5rem;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.5rem;
    color: var(--text-dark, #2d3748);
}

.no-data {
    color: var(--text-muted, #718096);
    font-style: italic;
    margin: 0;
}

.validation-notice {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fffbeb;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    margin-top: 2rem;
}

.validation-notice .material-symbols-outlined {
    font-size: 1.75rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.validation-notice p {
    margin: 0;
    color: #92400e;
    line-height: 1.6;
}

.btn-validate {
    background: #48bb78 !important;
    color: white !important;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-validate:hover {
    background: #38a169 !important;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}

/* ===================================
   Validation success page
   =================================== */
.validation-success {
    text-align: center;
    padding: 2rem 1rem;
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon .material-symbols-outlined {
    font-size: 5rem;
    color: #48bb78;
}

.validation-success h2 {
    font-size: 1.75rem;
    color: var(--text-dark, #2d3748);
    margin: 0 0 1rem 0;
}

.validation-success p {
    color: var(--text-muted, #718096);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 1.05rem;
}

.validation-info {
    background: #f0fdf4;
    border: 2px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.validation-info p {
    color: var(--text-dark, #2d3748);
    font-weight: 600;
    margin-bottom: 1rem;
}

.validation-info ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #166534;
}

.validation-info li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.btn-success {
    background: #48bb78;
    color: white;
}

.btn-success:hover {
    background: #38a169;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    .collect-page {
        padding: 1rem 0.5rem;
    }

    .collect-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .header-logo img {
        width: 60px;
    }

    .header-info h1 {
        font-size: 1.4rem;
    }

    .progress-indicator {
        padding: 0.75rem 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .progress-line {
        width: 35px;
        min-width: 35px;
    }

    .step-circle {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        min-width: 38px;
    }

    .step-circle .material-symbols-outlined {
        font-size: 24px;
    }

    .step-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .form-card {
        padding: 1.5rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group-small {
        min-width: unset;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .activity-input-wrapper {
        gap: 0.5rem;
        width: 100%;
    }

    .btn-delete-activity {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .btn-delete-activity .material-symbols-outlined {
        font-size: 1.25rem;
    }

    .days-checkboxes {
        grid-template-columns: 1fr;
    }

    .period-fields {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .btn-delete-period {
        width: 100%;
        height: 40px;
        min-height: 40px;
    }

    .summary-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .btn-edit {
        width: 100%;
        justify-content: center;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-label {
        min-width: unset;
    }

    .validation-notice {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .collect-header {
        padding: 1rem;
        gap: 1rem;
    }

    .header-logo img {
        width: 50px;
    }

    .header-info h1 {
        font-size: 1.25rem;
    }

    .student-name {
        font-size: 1rem;
    }

    .session-info {
        font-size: 0.85rem;
    }

    .form-header h2 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .progress-indicator {
        padding: 0.5rem 0.25rem;
        margin-bottom: 1.5rem;
    }

    .progress-step {
        gap: 0.35rem;
    }

    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        min-width: 32px;
        border-width: 2px;
    }

    .step-circle .material-symbols-outlined {
        font-size: 20px;
    }

    .progress-line {
        width: 25px;
        min-width: 25px;
        height: 2px;
        margin: 0 0.25rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .activity-input-wrapper {
        gap: 0.5rem;
        width: 100%;
    }

    .activity-input-wrapper textarea {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .btn-delete-activity {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .btn-delete-activity .material-symbols-outlined {
        font-size: 1.15rem;
    }

    .btn-add-activity {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .form-check {
        padding: 0.625rem 0.75rem;
        gap: 0.625rem;
    }

    .form-check-input {
        width: 18px;
        height: 18px;
    }

    .form-check-label {
        font-size: 0.9rem;
    }

    .day-section {
        padding: 1rem;
    }

    .period-field label {
        font-size: 0.8rem;
    }

    .btn-delete-period {
        height: 36px;
        min-height: 36px;
    }

    .btn-add-period {
        padding: 0.625rem;
        font-size: 0.85rem;
    }

    .summary-header {
        padding: 1rem;
    }

    .summary-header h3 {
        font-size: 1rem;
    }

    .summary-content {
        padding: 1rem;
    }

    .info-label {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .validation-notice {
        padding: 1rem;
    }

    .validation-success {
        padding: 1.5rem 0.5rem;
    }

    .success-icon .material-symbols-outlined {
        font-size: 4rem;
    }

    .validation-success h2 {
        font-size: 1.5rem;
    }
}
