/* Cancellation Page Styles */
body.smartbooking-cancel-page {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cancel-container {
    max-width: 600px;
    width: 90%;
    margin: 40px auto;
}

.cancel-confirmation,
.cancel-message {
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.cancel-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cancel-confirmation h1,
.cancel-message h1 {
    font-size: 32px;
    margin: 0 0 16px 0;
    color: #333;
}

.cancel-question {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.booking-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    text-align: left;
}

.booking-details h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #333;
    font-size: 18px;
}

.booking-details p {
    margin: 12px 0;
    font-size: 15px;
    color: #555;
}

.booking-details strong {
    color: #333;
    display: inline-block;
    width: 120px;
}

.cancel-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-full {
    width: 100%;
    max-width: 400px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.btn-secondary:hover {
    background: #5a6268;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cancel-result {
    margin-top: 32px;
}

.success-message,
.error-message {
    padding: 32px;
    border-radius: 12px;
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
}

.error-message {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.success-icon,
.error-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.success-message h2 {
    color: #155724;
    margin: 0 0 16px 0;
}

.error-message h2 {
    color: #721c24;
    margin: 0 0 16px 0;
}

.success-message p,
.error-message p {
    font-size: 15px;
    margin: 8px 0;
}

.cancel-message.cancelled {
    border-top: 4px solid #dc3545;
}

/* Responsive */
@media (max-width: 640px) {
    .cancel-confirmation,
    .cancel-message {
        padding: 32px 24px;
    }

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

    .btn {
        width: 100%;
    }

    .cancel-icon {
        font-size: 56px;
    }

    .cancel-confirmation h1,
    .cancel-message h1 {
        font-size: 24px;
    }
}
