/* Booking Wizard Styles */
.booking-wizard {
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0rem;
    width: 100%;
    background: none !important;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .booking-wizard {
        padding: 0rem 1rem;
    }
}

.wizard-container {
    width: 100%;
    background: transparent;
    border-radius: 12px;
    padding: 0 1.5rem;
    margin: 0rem auto 2rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .wizard-container {
        padding:  0rem 2rem;
        margin: 1rem auto;
    }
}

.wizard-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Responsive width */
@media (min-width: 1024px) {
    .wizard-container {
        width: 100%;
        padding: 2rem;
    }
}

/* Progress Bar */
.progress-container {
    margin: 24px 0;
    width: 100%;
    padding: 0 4px;
}

/* Bottom progress bar specific styles */
.bottom-progress {
    margin: 32px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

@media (min-width: 480px) {
    .progress-container {
        margin: 32px 0;
        padding: 0;
    }
    
    .bottom-progress {
        margin-top: 40px;
        padding-top: 20px;
    }
}

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

.progress-label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4d4402e0;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.3;
}

@media (min-width: 480px) {
    .step-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 24px;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 480px) {
    .destinations-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin: 0 0 24px;
    }
}

.destination-btn {
    width: 100%;
    padding: 10px 8px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #1e1e1e;
    background: transparent;
    color: #1e1e1e;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    margin: 0;
}

@media (min-width: 480px) {
    .destination-btn {
        padding: 12px 16px;
        font-size: 14px;
        width: auto;
        min-width: 120px;
        margin: 0;
    }
}

/* Center the buttons on mobile */
@media (max-width: 639px) {
    .destinations-grid {
        justify-content: center;
    }
    .destination-btn {
        flex: 0 0 calc(50% - 12px);
    }
}

/* On larger screens, let buttons take natural width */
@media (min-width: 640px) {
    .destinations-grid {
        justify-content: center;
    }
    .destination-btn {
        flex: 0 0 auto;
        padding: 12px 24px;
    }
}

.destination-btn:hover {
    border-color: #4d4402e0;
}

.destination-btn.selected {
    background-color: #4d4402e0;
    border-color: #4d4402e0;
    color: white;
}

/* Date Range Input Styles */
.date-range-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #4d4402e0;
    box-shadow: 0 0 0 3px rgba(77, 68, 2, 0.15);
}

.form-control:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

/* Date Selection Styles */
.date-selection-container {
    text-align: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.date-fields {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0 0;
    padding: 0;
}

.date-option {
    width: 48%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.date-option-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
    text-align: left;
    padding-left: 5px;
}

.date-option-inner {
    position: relative;
    width: 100%;
    height: 56px;
    border: 1px solid #1e1e1e;
    border-radius: 30px;
    background-color: transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.date-option-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #111827;
    padding: 10px 0;
    outline: none;
    cursor: pointer;
}

/* Hide the default calendar icon in WebKit browsers */
.date-option-input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Style the date input's focus state */
.date-option-inner:focus-within {
    border-color: #4d4402e0;
    box-shadow: 0 0 0 3px rgba(77, 68, 2, 0.15);
}

/* Style for disabled state */
.date-option-inner[style*="opacity: 0.6"] {
    opacity: 0.6 !important;
    pointer-events: none;
}

/* Ensure the date input text is visible */
.date-option-input[type="date"] {
    color: #111827;
}

/* For browsers that don't support date input, show a placeholder */
.date-option-input[type="date"]:not(:valid):before {
    content: attr(placeholder);
    color: #9ca3af;
    width: 100%;
}

.date-option-inner:hover {
    border-color: #a8a29e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-option-input {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    padding: 16px 0;
    outline: none;
    cursor: pointer;
}

.date-option-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.date-option-input:focus {
    outline: none;
}

.date-option-inner:focus-within {
    border-color: #4d4402e0;
    box-shadow: 0 0 0 3px rgba(77, 68, 2, 0.15);
}

/* Disabled state */
.date-option-inner[style*="opacity: 0.6"] {
    background-color: #f9fafb;
    cursor: not-allowed;
    opacity: 0.6 !important;
}

.date-option-inner[style*="opacity: 0.6"] .date-option-input {
    cursor: not-allowed;
}

/* Calendar icon */
.calendar-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .date-option {
        max-width: 100%;
    }
    
    .date-option-label {
        margin-left: 12px;
    }
    
    .date-option-input {
        font-size: 15px;
    }
}

.calendar-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Flatpickr overrides */
.flatpickr-calendar {
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: none;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.endRange.nextMonthDay {
    background: #4d4402e0;
    border-color: #4d4402e0;
}

.flatpickr-day.inRange {
    background: #f5f3e7;
    border-color: #f5f3e7;
    box-shadow: -5px 0 0 #f5f3e7, 5px 0 0 #f5f3e7;
}

.flatpickr-day.today {
    border-color: #4d4402e0;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    background: #f5f3e7;
    color: #111827;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .date-range-picker {
        height: 52px;
        font-size: 15px;
        padding: 0 56px 0 20px;
    }
    
    .calendar-icon {
        right: 16px;
    }
    
    .calendar-icon svg {
        width: 20px;
        height: 20px;
    }
}

.date-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.date-input-group {
    margin-bottom: 20px;
}

.date-input-container {
    position: relative;
    width: 100%;
}

.date-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.date-input-wrapper {
    position: relative;
    width: 100%;
}

/* Contact Information Step */
.contact-information-step {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    font-family: 'Arial', sans-serif;
}

.contact-information-step .step-title {
    font-size: 2rem;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.contact-information-step .step-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

.contact-form {
    margin-top: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #2c3e50;
    background-color: transparent;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #4d4402e0;
    box-shadow: 0 0 0 3px rgba(77, 68, 2, 0.15);
}

.contact-form .form-control::placeholder {
    color: #9ca3af;
    font-family: 'Arial', sans-serif;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.half-width {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .half-width {
        width: 100%;
    }
}

/* Safari Preferences Step */
.safari-preferences-step {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.step-subtitle {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: center;
}

.safari-preferences-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 150px;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: transparent;
    color: inherit;
}

.safari-preferences-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.hint-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
    font-style: italic;
}

.date-input {
    width: 100%;
    height: 52px;
    padding: 0 45px 0 15px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    color: #111827;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.date-input:focus {
    outline: none;
    border-color: #4d4402e0;
    box-shadow: 0 0 0 3px rgba(77, 68, 2, 0.15);
}

.date-input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

.date-input:focus + .date-icon {
    color: #4d4402e0;
}

.date-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    color: #4b5563;
    text-align: center;
}

.date-summary strong {
    color: #111827;
    font-weight: 600;
}

/* Hide the default date picker icon in WebKit browsers */
.date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    color: transparent;
    background: transparent;
    cursor: pointer;
}

/* Summary Container */
.summary-container {
    background-color: transparent;
    padding: 1rem 0;
    margin: 1rem 0 1rem 2rem;
    max-width: 700px;
    text-align: left;
}

.step-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

.step-content .step-title {
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
    margin: 0 auto 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0 1rem;
    max-width: 800px;
}

.step-content .step-description {
    font-size: 1.05rem;
    color: #4b5563;
    text-align: left;
    margin: 0 0 2rem 1rem;
    line-height: 1.6;
    max-width: 700px;
}

.summary-container h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0 auto 1.5rem;
    padding: 0 0 0.75rem;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    max-width: 800px;
}

.summary-section {
    margin: 0 0 2rem 1rem;
    padding: 0;
    max-width: 100%;
}

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

.summary-section h4 {
    font-size: 1.15rem;
    color: #2c3e50;
    margin: 0 auto 1.25rem;
    font-weight: 600;
    text-align: center;
    max-width: 800px;
    padding: 0 1rem;
}

.summary-section p {
    margin: 0.5rem 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;
    padding: 0 0 0 1rem;
}

.summary-section p:before {
    display: none;
}

.summary-section p strong {
    color: #2c3e50;
    font-weight: 500;
    margin-right: 0.5rem;
    display: inline;
    min-width: 160px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-content {
        padding: 1.5rem 1rem;
    }
    
    .summary-container {
        margin-left: 1rem;
    }
    
    .step-content .step-title {
        font-size: 1.6rem;
        padding-left: 0.5rem;
    }
    
    .step-content .step-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        margin-left: 0.5rem;
    }
    
    .summary-section {
        margin-left: 0.5rem;
    }
    
    .summary-section p {
        padding-left: 0.5rem;
    }
    
    .summary-section p strong {
        display: inline-block;
        min-width: 120px;
        margin: 0 0.5rem 0.25rem 0;
    }
}

/* Newsletter Subscription Styles */
.newsletter-option {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.checkbox-input:checked {
    background-color: #4d4402e0;
    border-color: #4d4402e0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.875rem;
}

.checkbox-label {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    user-select: none;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
    transition: color 0.2s ease;
}

.newsletter-option:hover .checkbox-label {
    color: #1a202c;
}

.newsletter-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0.75rem 0 0 2rem;
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    max-width: 600px;
}

@media (max-width: 640px) {
    .newsletter-option {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .checkbox-label {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .newsletter-description {
        margin-left: 0;
        font-size: 0.85rem;
    }
}

/* Make safari preferences text more readable */
.summary-section p:has(strong:contains('Your Safari Preferences')) {
    white-space: pre-line;
    background-color: rgba(0, 0, 0, 0.02);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    font-style: italic;
    border-left: 3px solid #4d4402e0;
}

/* Budget Selection - Using same styles as destination selection */

.navigation-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 12px;
    width: 100%;
}

@media (min-width: 480px) {
    .navigation-buttons {
        flex-direction: row;
        justify-content: center;
        padding-top: 24px;
        gap: 16px;
    }
}

.btn-back {
    padding: 10px 24px;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    background: white;
    color: #4b5563;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 280px;
    font-size: 15px;
}

.btn-back:hover {
    background-color: #f9fafb;
}

@media (min-width: 480px) {
    .btn-back {
        padding: 8px 24px;
        width: auto;
        min-width: 100px;
    }
}

.btn-next {
    padding: 10px 24px;
    border-radius: 9999px;
    background-color: #4d4402e0;
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
    font-size: 15px;
}

@media (min-width: 480px) {
    .btn-next {
        padding: 12px 32px;
        width: auto;
        min-width: 160px;
    }
}

.btn-next:hover {
    background-color: #4d4402e0;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-next:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

/* Hide the back button on first step */
.navigation-buttons > div:empty {
    display: none;
}

/* Loading button styles */
.loading-button {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.loading-button .button-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.loading-button.is-loading .button-text {
    opacity: 0;
    transform: translateY(10px);
}

.loading-button.is-loading .loading-spinner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.loading-spinner {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.spinner-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

/* Button disabled state */
.btn-next:disabled {
    cursor: not-allowed;
    opacity: 0.9;
}

/* Submission Success State */
.submission-success {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.submission-success .success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
}

.submission-success .success-icon svg {
    width: 28px;
    height: 28px;
    color: #4b5563;
}

.submission-success h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.submission-success p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

/* Loading State */
.btn-next:disabled {
    opacity: 0.8;
    cursor: wait;
    position: relative;
}

.btn-next .spinner-border {
    margin-right: 8px;
    vertical-align: middle;
}

/* Error Message */
.error-message {
    margin-top: 1rem;
    width: 100%;
}

.alert-danger {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    color: #7f1d1d;
    background-color: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    width: 100%;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert-danger svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    color: #dc2626;
}

/* Success Actions */
.success-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Home Icon in Button */
.submission-success .btn-home {
    padding: 0.6rem 1.5rem;
    background-color: #f3f4f6;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.submission-success .home-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    color: #4b5563;
}

.submission-success .btn-home:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    border-color: #9ca3af;
}

.submission-success .btn-home:active {
    transform: translateY(0);
    background-color: #d1d5db;
}

/* Responsive adjustments for success actions */
@media (max-width: 480px) {
    .success-actions {
        margin-top: 1.5rem;
    }
    
    .submission-success .btn-home {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .submission-success {
        padding: 1.5rem 1rem;
    }
    
    .submission-success h3 {
        font-size: 1.25rem;
    }
    
    .submission-success p {
        font-size: 0.95rem;
    }
}
