/* Windsor Booking System Styles */
.windsor-booking-confirmation {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.confirmation-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.confirmation-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #4CAF50;
}

.reference-number {
    background: #e8f4fc;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    margin: 15px 0;
    font-size: 1.2em;
}

.reference-number .ref {
    color: #2980b9;
    font-weight: bold;
    font-size: 1.3em;
    font-family: monospace;
}

.email-status {
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-weight: bold;
}

.email-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.email-status.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.booking-details, .customer-details {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #4CAF50;
}

.booking-details h2, .customer-details h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    font-weight: 600;
    color: #555;
}

.detail-item .value {
    font-weight: 500;
    color: #333;
}

.actions-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #f0f7ff;
    border-radius: 10px;
}

.actions-section h2 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    display: inline-block;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.confirmation-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
}

.confirmation-footer p {
    margin: 10px 0;
}

.important-note {
    background: #fff8e1;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #ffb300;
    margin-top: 20px;
    text-align: left;
}

.windsor-error {
    text-align: center;
    padding: 50px 20px;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 10px;
    color: #c62828;
    max-width: 600px;
    margin: 50px auto;
}

.windsor-error p {
    font-size: 1.2em;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .windsor-booking-confirmation {
        margin: 20px;
        padding: 20px;
    }
    
    .confirmation-header h1 {
        font-size: 2em;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
}