/* Page de réservation */

/* Bannière */
.reservation-banner {
    position: relative;
    height: 350px;
    background-image: url('../img/reservation-banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 135px;
    border-radius: 25px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
}

.banner-title {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
}

/* Stepper */
.stepper-section {
    background-color: #ffffff;
}

.stepper-container {
    max-width: 800px;
    margin: 0 auto;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999999;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: #ffffff;
}

.step.completed .step-number {
    background-color: var(--primary-color);
    color: #ffffff;
}

.step-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #999999;
    text-align: center;
    transition: color 0.3s ease;
}

.step.active .step-label {
    color: #1E3246;
    font-weight: 600;
}

.step.completed .step-label {
    color: #1E3246;
    font-weight: 600;
}

.step-line {
    width: 80px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 0 15px;
    margin-bottom: 30px;
    transition: background-color 0.3s ease;
}

.step-line.completed {
    background-color: var(--primary-color);
}

/* Contenu principal */
.reservation-content {
    padding: 50px 20px;
    background-color: #fff;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reservation-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* Calendrier */
.calendar-wrapper {
    background-color: rgba(30, 50, 70, 0.05);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.calendar-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    color: #1E3246;
    transition: background-color 0.2s ease;
}

.calendar-nav:hover {
    background-color: #f0f0f0;
}

.calendar-month {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1E3246;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #666666;
    padding: 10px 5px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px 0;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    cursor: default;
    transition: all 0.2s ease;
    position: relative;
}

/* Zone du numéro avec fond continu */
.day-number-row {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Fond continu pour les dates disponibles */
.calendar-day.available .day-number-row {
    background-color: rgba(30, 50, 70, 0.1);
}

/* Premier jour disponible d'une séquence (non précédé par un jour disponible) */
.calendar-day.available:not(.calendar-day.available + .calendar-day.available) .day-number-row {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Dernier jour disponible d'une séquence (non suivi par un jour disponible) */
.calendar-day.available:not(:has(+ .calendar-day.available)) .day-number-row {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.calendar-day.available:hover .day-number-row {
    background-color: rgba(30, 50, 70, 0.15);
}

/* Cercle pour la sélection (invisible par défaut) */
.day-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.calendar-day.other-month {
    opacity: 0.3;
    pointer-events: none;
}

.calendar-day.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dates disponibles */
.calendar-day.available {
    cursor: pointer;
}

/* Date sélectionnée - cercle rouge */
.calendar-day.selected .day-circle {
    background-color: var(--primary-color);
}

.calendar-day.selected .day-number {
    color: #ffffff;
}

.day-number {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3246;
    line-height: 1;
}

.day-price {
    font-family: 'Lato', sans-serif;
    font-size: 8px;
    font-weight: 800;
    color: #1E3246;
    margin-top: 4px;
    line-height: 1;
}

/* Tooltip disponibilité au hover */
.day-availability {
    display: none;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #1E3246;
    color: #ffffff;
    font-size: 10px;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.day-availability::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1E3246;
}

.calendar-day:hover .day-availability {
    display: block;
}

/* Panneau de sélection */
.selection-panel {
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.selection-list {
    flex: 1;
}

.no-selection {
    color: #999999;
    font-style: italic;
    text-align: center;
    padding: 40px 20px;
}

/* Carte de sélection */
.selection-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    background-color: rgba(220, 50, 35, 0.05);
    transition: box-shadow 0.2s ease;
}

.selection-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.selection-image {
    width: 250px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    align-self: flex-start;
}

.selection-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.selection-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
    flex: 1;
}

.selection-description {
    max-width: 750px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Ligne avec prix, chambres et quantité */
.selection-details-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: auto;
    padding-top: 10px;
}

.selection-price {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.selection-price span {
    font-size: 12px;
    font-weight: 400;
    color: #666666;
}

.selection-rooms {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #060606;
    text-decoration: underline;
}

.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #999999;
    padding: 5px;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.delete-btn:hover {
    color: var(--primary-color);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-label {
    font-size: 12px;
    color: #666666;
    margin-right: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.quantity-btn.minus {
    background-color: #f0f0f0;
    color: #666666;
}

.quantity-btn.plus {
    background-color: var(--primary-color);
    color: #ffffff;
}

.quantity-btn:hover {
    opacity: 0.8;
}

.quantity-value {
    width: 35px;
    height: 30px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

/* Footer de sélection */
.selection-footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.conditions-link {
    font-size: 12px;
    color: #1E3246;
    text-decoration: underline;
}

.total-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.total-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.total-label {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666666;
}

.total-amount {
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3246;
    min-width: 80px;
    text-align: right;
}

.total-line--tva .total-label,
.total-line--tva .total-amount {
    font-size: 12px;
    color: #888;
}

.total-line--fees {
    padding: 6px 10px;
    background-color: rgba(30, 50, 70, 0.05);
    border-radius: 6px;
    margin: 4px 0;
}

.total-line--fees .total-label {
    font-size: 12px;
    color: #1E3246;
}

.total-line--fees .total-amount {
    font-size: 13px;
    color: #1E3246;
}

.total-line--final {
    border-top: 1px solid #e0e0e0;
    padding-top: 8px;
    margin-top: 4px;
}

.total-line--final .total-label {
    font-size: 14px;
    font-weight: 600;
    color: #1E3246;
}

.total-line--final .total-amount {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-continue {
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1E3246;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-continue:hover:not(:disabled) {
    background-color: #2a4560;
}

.btn-continue:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.btn-continue svg {
    width: 18px;
    height: 18px;
}

/* ===== PAGE FORMULAIRE ===== */

.form-grid {
    display: grid;
    grid-template-columns: 428px 1fr;
    gap: 50px;
    align-items: start;
    max-width: 1650px;
    margin: 0 auto;
}

/* Sidebar */
.form-sidebar {
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
}

.sidebar-logo {
    margin-bottom: 20px;
}

.sidebar-logo img {
    height: 30px;
    width: auto;
}

.sidebar-info {
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #1E3246;
}

.info-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Card */
.contact-card {
    background-color: rgba(30, 50, 70, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0e0e0;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-text {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.4;
    max-width: 250px;
    margin: 10px auto;
}

.contact-text strong {
    color: #1E3246;
}

.contact-question {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 10px;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1E3246;
    margin-bottom: 15px;
}

.btn-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 15px;
    background-color: #1E3246;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-message:hover {
    background-color: #2a4560;
}

/* Form Main */
.form-main {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 30px;
}

.form-section:last-of-type {
    margin-bottom: 20px;
}

.form-section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1E3246;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

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

.form-group label {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: #666666;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #1E3246;
    background-color: rgba(220, 50, 35, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 50, 35, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-checkbox label {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666666;
    cursor: pointer;
}

/* Inline checkbox for custom fields */
.form-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    min-height: 44px;
}

.form-checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.form-checkbox-inline label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #1E3246;
    cursor: pointer;
    margin: 0;
}

/* Multiple checkboxes container */
.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-checkboxes .form-checkbox-inline {
    padding: 10px 14px;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Participant Cards (Multiple participants) */
.participant-form-container {
    margin-top: 15px;
}

.participant-card {
    background-color: rgba(30, 50, 70, 0.03);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.participant-card:hover {
    border-color: rgba(220, 50, 35, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.participant-card:last-child {
    margin-bottom: 0;
}

.participant-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.participant-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

.participant-card__date {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666666;
}

.participant-card .form-row {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-sidebar {
        max-width: 400px;
        margin: 0 auto;
    }

    .reservation-grid {
        grid-template-columns: 1fr;
    }

    .calendar-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 32px;
    }

    .stepper {
        flex-wrap: wrap;
        gap: 10px;
    }

    .step-line {
        display: none;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-label {
        font-size: 12px;
    }

    .selection-card {
        flex-direction: column;
    }

    .selection-image {
        width: 100%;
        height: 150px;
    }

    .selection-actions {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }

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

@media (max-width: 480px) {
    .calendar-day {
        min-height: 45px;
    }

    .day-number {
        font-size: 14px;
    }

    .day-price {
        font-size: 8px;
    }
}

/* ===== PAGE PAIEMENT ===== */

.payment-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.payment-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

/* Champs pleine largeur */
.form-group.full-width {
    grid-column: 1 / -1;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

/* Layout 3 colonnes */
.form-row.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

/* Textarea */
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #1E3246;
    background-color: rgba(220, 50, 35, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: vertical;
    min-height: 100px;
}

.form-group textarea::placeholder {
    color: #999999;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 50, 35, 0.1);
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: rgba(220, 50, 35, 0.03);
    transition: border-color 0.2s ease;
}

.file-upload-wrapper:hover .file-upload-display {
    border-color: var(--primary-color);
}

.file-upload-text {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #999999;
}

.file-upload-button {
    padding: 6px 15px;
    background-color: #1E3246;
    color: #ffffff;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

/* Form hints */
.form-hint {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #999999;
    margin-top: 6px;
}

/* Attestation checkbox */
.attestation-checkbox {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(30, 50, 70, 0.03);
    border-radius: 8px;
}

.attestation-checkbox label {
    font-size: 12px;
    line-height: 1.5;
}

/* Responsive paiement */
@media (max-width: 768px) {
    .form-row.three-columns {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE CONFIRMATION ===== */

.confirmation-main {
    padding: 40px;
}

/* En-tête de confirmation */
.confirmation-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 40px;
}

.confirmation-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.confirmation-title-block {
    flex: 1;
}

.confirmation-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1E3246;
    margin: 0 0 5px 0;
}

.confirmation-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Section hôtel */
.confirmation-hotel-section {
    margin-bottom: 40px;
}

.hotel-section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.hotel-card {
    background-color: rgba(30, 50, 70, 0.02);
    border-radius: 10px;
    padding: 25px;
}

.hotel-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.hotel-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1E3246;
    margin: 0;
}

.hotel-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hotel-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #1E3246;
}

.hotel-description {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Boutons d'action */
.confirmation-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: #1E3246;
    border: 1px solid #1E3246;
    border-radius: 8px;
    padding: 15px 30px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: #1E3246;
    color: #ffffff;
}

/* Responsive confirmation */
@media (max-width: 768px) {
    .confirmation-main {
        padding: 25px;
    }

    .confirmation-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .confirmation-title {
        font-size: 20px;
    }

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

    .confirmation-actions .btn {
        width: 100%;
    }
}