/* Checkout Form Styles */
.seekgo-checkout-wrapper {
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

.seekgo-checkout-top-header {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.seekgo-checkout-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #444444;
    margin-top: 12px;
}

.seekgo-checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - Form */
.seekgo-checkout-form-column {
    background: #EEEEEE;
    border-radius: 12px;
}

.seekgo-form-section {
    margin-bottom: 20px;
    padding: 22px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
}

.seekgo-form-section:last-child {
    margin-bottom: 20px;
}

.seekgo-form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.seekgo-section-description {
    color: #667;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.seekgo-reservation-holder {
    padding: 15px 0px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.seekgo-holder-label {
    font-size: 14px;
    color: #667;
    margin: 0 0 5px 0;
}

.seekgo-service-name {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

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

.seekgo-form-field {
    margin-bottom: 20px;
}

.seekgo-form-field label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.seekgo-form-field input,
.seekgo-form-field select,
.seekgo-form-field textarea {
    width: 100%;
    border: 0.95px solid #D1D5DB !important;
    border-radius: 8.52px !important;
    border-width: 0.95px;
    padding: 11.36px;
    box-shadow: 0px 3.79px 9.47px 0px #00000040 !important;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
    background: white;
    box-sizing: border-box;
}

/* Custom select styling with SVG chevron */
.seekgo-form-field select {
    padding: 11.36px 40px 11.36px 11.36px; /* Add right padding for chevron */
    
    /* Hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Add custom chevron */
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.69634 5.7595C1.54634 5.9195 1.47634 6.1095 1.48634 6.3295C1.49634 6.5495 1.58634 6.7345 1.75634 6.8845L7.32134 11.7895C7.48134 11.9195 7.66134 11.9845 7.86134 11.9845C8.06134 11.9845 8.24134 11.9195 8.40134 11.7895L13.9663 6.8845C14.1363 6.7345 14.2263 6.5495 14.2363 6.3295C14.2463 6.1095 14.1788 5.917 14.0338 5.752C13.8888 5.587 13.7038 5.4995 13.4788 5.4895C13.2538 5.4795 13.0613 5.5445 12.9013 5.6845L7.86134 10.1245L2.82134 5.6845C2.66134 5.5445 2.46884 5.4795 2.24384 5.4895C2.01884 5.4995 1.83634 5.5895 1.69634 5.7595Z' fill='%23444444'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

.seekgo-form-field input:focus,
.seekgo-form-field select:focus,
.seekgo-form-field textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0px 3.79px 9.47px 0px #00000040, 0 0 0 3px rgba(0,123,255,0.1);
}

.seekgo-form-field input::placeholder,
.seekgo-form-field textarea::placeholder {
    color: #999;
}

/* Flight details section input max-width for desktop */
.seekgo-flight-details-section .seekgo-form-field input {
    max-width: 258px;
}

/* Responsive: remove max-width on mobile */
@media (max-width: 768px) {
    .seekgo-flight-details-section .seekgo-form-field input {
        max-width: none;
    }
}

.seekgo-children-info {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.seekgo-children-count {
    font-weight: 600;
    color: #1976d2;
}

.seekgo-add-child,
.seekgo-add-phone {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.seekgo-add-child:hover,
.seekgo-add-phone:hover {
    text-decoration: underline;
}

.seekgo-phone-field {
    flex: 2;
}

.seekgo-country-code {
    flex: 1;
}

.seekgo-checkbox-field {
    margin-bottom: 15px;
}

.seekgo-checkbox-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1.4;
}

.seekgo-checkbox-field a, .seekgo-checkbox-field a:hover, .seekgo-checkbox-field a:visited {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    line-height: 1.4;
    text-decoration: none;
}

.seekgo-checkbox-field input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.seekgo-radio-label input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.seekgo-policy-btn {
    background-color: #FF8200 !important;
    color: white !important;
    border: 1px solid #FF8200 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    opacity: 1;
}

.seekgo-policy-btn:hover {
    background-color: #FF8200 !important;
}

/* Right Column - Summary */
.seekgo-checkout-summary-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seekgo-summary-panel {
    background: white;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.seekgo-summary-panel:last-child {
    margin-bottom: 0;
}

.seekgo-summary-panel h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.seekgo-payment-breakdown {
    margin-bottom: 25px;
}

.seekgo-payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #667;
}

.seekgo-payment-item.seekgo-discount {
    color: #28a745;
    font-weight: 500;
}

.seekgo-payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 2px solid #e9ecef;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.seekgo-info-icon {
    color: #007bff;
    cursor: help;
    margin-left: 5px;
}

.seekgo-buy-button {
    width: 100% !important;
    height: 48px;
    background-color: #FF8200 !important;
    color: white !important;
    border: 1px solid #FF8200 !important;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    opacity: 1;
}

.seekgo-buy-button:hover {
    background: #218838;
}

.seekgo-purchase-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.seekgo-purchase-details p {
    font-size: 14px;
    color: #667;
    margin-bottom: 10px;
    line-height: 1.4;
}

.seekgo-service-description p,
.seekgo-service-description span,
.seekgo-service-description ul,
.seekgo-service-description li {
    font-size: 14px;
    color: #667;
    margin-bottom: 10px;
    line-height: 1.4;
}

.seekgo-tickets-only {
    font-size: 12px;
    color: #999;
    margin: 5px 0 0 0;
}

.seekgo-experience-details h5,
.seekgo-includes h5,
.seekgo-not-includes h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.seekgo-experience-details ul,
.seekgo-includes ul,
.seekgo-not-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seekgo-experience-details li,
.seekgo-includes li,
.seekgo-not-includes li {
    margin-bottom: 8px;
    padding-left: 20px;
    font-size: 14px;
    color: #667;
    margin-bottom: 10px;
    line-height: 1.4;
}

.seekgo-check {
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.seekgo-x {
    color: #dc3545;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Policy Section - Card Design */
.seekgo-policy-section {
    background: #F1F8EC;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 22px;
}

.seekgo-policy-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.seekgo-policy-text {
    flex: 1;
}

.seekgo-policy-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 0 0 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seekgo-policy-text p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.seekgo-policy-btn {
    background-color: #71B544 !important;
    color: white !important;
    border: 1px solid #71B544 !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    min-width: 80px;
}

.seekgo-policy-btn:hover {
    background-color: #218838 !important;
}

/* Children Section Improvements */
.seekgo-children-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.seekgo-children-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seekgo-children-count-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seekgo-children-count-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.seekgo-children-count-display {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.seekgo-children-count {
    font-size: 14px;
    color: #333;
    font-weight: normal;
}

.seekgo-children-forms {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seekgo-child-form {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.seekgo-child-form .seekgo-form-field {
    margin-bottom: 0;
}

.seekgo-child-form .seekgo-form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.seekgo-child-form .seekgo-form-field select {
    width: 100%;
    border: 0.95px solid #D1D5DB;
    border-radius: 8.52px;
    border-width: 0.95px;
    padding: 11.36px 40px 11.36px 11.36px; /* Add right padding for chevron */
    box-shadow: 0px 3.79px 9.47px 0px #00000040;
    font-size: 14px;
    background: white;
    box-sizing: border-box;
    position: relative;
    
    /* Hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Add custom chevron */
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.69634 5.7595C1.54634 5.9195 1.47634 6.1095 1.48634 6.3295C1.49634 6.5495 1.58634 6.7345 1.75634 6.8845L7.32134 11.7895C7.48134 11.9195 7.66134 11.9845 7.86134 11.9845C8.06134 11.9845 8.24134 11.9195 8.40134 11.7895L13.9663 6.8845C14.1363 6.7345 14.2263 6.5495 14.2363 6.3295C14.2463 6.1095 14.1788 5.917 14.0338 5.752C13.8888 5.587 13.7038 5.4995 13.4788 5.4895C13.2538 5.4795 13.0613 5.5445 12.9013 5.6845L7.86134 10.1245L2.82134 5.6845C2.66134 5.5445 2.46884 5.4795 2.24384 5.4895C2.01884 5.4995 1.83634 5.5895 1.69634 5.7595Z' fill='%23444444'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
}

.seekgo-child-form .seekgo-form-field select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0px 3.79px 9.47px 0px #00000040, 0 0 0 3px rgba(0,123,255,0.1);
}

.seekgo-add-child {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.seekgo-add-child:hover {
    color: #0056b3;
    text-decoration: none;
}

.seekgo-add-child::before {
    content: "+";
    font-weight: bold;
    font-size: 16px;
}

/* Responsive adjustments for children section */
@media (max-width: 768px) {
    .seekgo-children-container {
        gap: 15px;
    }
    
    .seekgo-child-form {
        padding: 12px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .seekgo-checkout-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seekgo-checkout-summary-column {
        order: -1;
    }
}

@media (max-width: 768px) {
    .seekgo-checkout-top-header, 
    .seekgo-checkout-container {
        padding: 0px 10px;
    }
    
    .seekgo-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .seekgo-summary-panel {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .seekgo-checkout-form-column {
        padding: 15px;
    }
    
    .seekgo-form-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .seekgo-summary-panel {
        padding: 15px;
    }
}

/* Responsive design for policy section */
@media (max-width: 768px) {
    .seekgo-policy-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .seekgo-policy-text h3 {
        justify-content: center;
    }
    
    .seekgo-policy-text p {
        text-align: center;
    }
    
    .seekgo-policy-btn {
        align-self: center;
        min-width: 120px;
    }
}

/* Remove child button */
.seekgo-remove-child {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.seekgo-remove-child:hover {
    color: #c82333;
    text-decoration: none;
}

.seekgo-remove-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Authentication Section Styles */
.seekgo-auth-section {
    margin-bottom: 20px;
    padding: 22px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: white;
}

.seekgo-auth-options {
    display: flex;
    margin-top: 20px;
    gap: 5px;
}

.seekgo-auth-option button {
    width: 100% !important;
}

.seekgo-auth-option a {
    text-decoration: none !important;
}

.seekgo-auth-option {
    width: 100%;
    max-width: 257px;
}

.seekgo-login-btn,
.seekgo-register-btn,
.seekgo-guest-btn {
    width: 100%;
    max-width: 257px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.025em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Login Button - Green */
.seekgo-login-btn {
    background: #6CB24B !important;
    color: white !important;
    border: 2px solid #6CB24B !important;
}

.seekgo-login-btn:hover {
    background: #5A9A3F !important;
    border-color: #5A9A3F !important;
    box-shadow: 0 6px 20px rgba(108, 178, 75, 0.4) !important;
}

/* Register Button - Orange */
.seekgo-register-btn {
    background: #FF8C00 !important;
    color: white !important;
    border: 2px solid #FF8C00 !important;
}

.seekgo-register-btn:hover {
    background: #E67E00 !important;
    border-color: #E67E00 !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4) !important;
}

/* Guest Button - White with Orange Border */
.seekgo-guest-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    background: white;
    color: #FF8200 !important;
    border: 2px solid #FF8200 !important;
}

.seekgo-guest-btn:hover {
    color: #336699 !important;
    border: 2px solid #FF8200 !important;
}

.seekgo-guest-btn:hover {
    background: white !important;
    border-color: #E67E00 !important;
    color: #E67E00 !important;
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2);
}

.seekgo-btn-icon {
    display: none;
}

/* Active/Focus states for accessibility */
.seekgo-login-btn:focus,
.seekgo-register-btn:focus,
.seekgo-guest-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 178, 75, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seekgo-register-btn:focus {
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seekgo-guest-btn:focus {
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seekgo-auth-form {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-top: 16px;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.seekgo-auth-form h4 {
    margin: 0 0 16px 0;
    color: #333;
    font-size: 18px;
}

.seekgo-auth-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.seekgo-submit-btn,
.seekgo-cancel-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.seekgo-submit-btn {
    background: #28a745;
    color: white;
    flex: 1;
}

.seekgo-submit-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.seekgo-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.seekgo-cancel-btn {
    background: #6c757d;
    color: white;
}

.seekgo-cancel-btn:hover {
    background: #545b62;
}

.seekgo-forgot-password {
    margin-top: 12px;
    text-align: center;
}

.seekgo-forgot-password a {
    color: #007cba;
    text-decoration: none;
    font-size: 14px;
}

.seekgo-forgot-password a:hover {
    text-decoration: underline;
}

.seekgo-guest-notice {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.seekgo-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seekgo-notice-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.seekgo-notice-content p {
    margin: 0;
    color: #0056b3;
    font-size: 14px;
    line-height: 1.4;
}

.seekgo-welcome-section {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.seekgo-welcome-message {
    display: flex;
    align-items: center;
    gap: 16px;
}

.seekgo-welcome-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.seekgo-welcome-message h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.seekgo-welcome-message p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seekgo-auth-options {
        gap: 8px;
    }
    
    .seekgo-login-btn,
    .seekgo-register-btn,
    .seekgo-guest-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .seekgo-auth-form {
        padding: 16px;
    }
    
    .seekgo-auth-actions {
        flex-direction: column;
    }
    
    .seekgo-welcome-message {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Loading state for payment breakdown */
.seekgo-payment-breakdown.loading {
    opacity: 0.6;
    pointer-events: none;
}

.seekgo-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.seekgo-label {
    font-weight: 600;
    color: #667;
}

.seekgo-value {
    font-weight: 500;
    color: #333;
}

.seekgo-success {
    background: #f8fff9;
    border-left: 4px solid #4CAF50;
}

.seekgo-warning {
    background: #fffbf0;
    border-left: 4px solid #ff9800;
}

.seekgo-voucher-link {
    margin-top: 1rem;
    text-align: center;
}

.seekgo-confirmation-actions {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
}

.seekgo-btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.seekgo-btn.seekgo-primary {
    background: #4CAF50;
    color: white;
}

.seekgo-btn.seekgo-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.seekgo-btn.seekgo-secondary {
    background: #6c757d;
    color: white;
}

.seekgo-btn.seekgo-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.seekgo-policy-icon {
    background-image: url('./assets/images/info-icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 5px;
    cursor: pointer;
}

.seekgo-policy-icon:hover {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seekgo-confirmation-page {
        padding: 1rem;
    }
    
    .seekgo-confirmation-header h1 {
        font-size: 2rem;
    }
    
    .seekgo-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .seekgo-confirmation-actions .seekgo-btn {
        display: block;
        margin: 10px 0;
    }
}
