.success-confirmation {
    background-color: #f8f9fa;
    border: 2px solid #28a745;
    border-radius: 8px;
    color: #155724;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    animation: fadeInUp 0.4s ease-out;
}

.success-title {
    color: #28a745;
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.booking-id {
    background-color: #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 8px;
}

.pdf-button {
    background-color: #dc3545;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

    .pdf-button:hover {
        background-color: #c82333;
        color: white;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-modal .modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.success-icon i {
    font-size: 4rem;
    color: #28a745;
}

.success-title {
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

.booking-info {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.booking-label {
    color: #6c757d;
    font-weight: 500;
}

.booking-id {
    background-color: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 8px;
}

.pdf-button {
    background-color: #dc3545;
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .pdf-button:hover {
        background-color: #c82333;
        transform: translateY(-1px);
    }

.modal-backdrop {
    background-color: rgba(0,0,0,0.6);
}
