.booking-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    color: #19191a;
    margin-bottom: 20px;
    font-weight: bold;
}

.booking-form .form-group label {
    font-size: 14px;
    color: #707079;
    display: block;
    margin-bottom: 8px;
}

.booking-form .form-control {
    width: 100%;
    height: 50px;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    font-size: 16px;
    color: #19191a;
    padding-left: 15px;
}

.booking-form .form-control:focus {
    border-color: #dfa974;
    outline: none;
}

.booking-form .primary-btn {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #dfa974;
    border-radius: 2px;
    color: #ffffff;
    font-weight: 500;
    background: #dfa974;
    width: 100%;
    height: 46px;
    margin-top: 20px;
    text-align: center;
    line-height: 46px;
}

.booking-form .primary-btn:hover {
    background: #c68a5d;
    border-color: #c68a5d;
}

.confirmation-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.confirmation-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.confirmation-icon {
    font-size: 80px;
    color: #dfa974;
    margin-bottom: 20px;
}

.confirmation-content h2 {
    font-size: 36px;
    color: #191919;
    margin-bottom: 20px;
}

.confirmation-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.booking-details {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.booking-details h3 {
    font-size: 24px;
    color: #191919;
    margin-bottom: 20px;
}

.booking-details p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.confirmation-actions .primary-btn {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 767px) {
    .confirmation-content {
        padding: 20px;
    }
    
    .confirmation-icon {
        font-size: 60px;
    }
    
    .confirmation-content h2 {
        font-size: 28px;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .primary-btn {
        width: 100%;
    }
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

/* Existing styles */
.booking-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.booking-form h3 {
    text-align: center;
    font-size: 36px;
    color: #191919;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #191919;
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    color: #191919;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #dfa974;
    outline: none;
}

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #dfa974;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.primary-btn:hover {
    background-color: #c68a5d;
}

/* Responsive styles */
@media (max-width: 767px) {
    .booking-form {
        padding: 20px;
    }
    
    .booking-form h3 {
        font-size: 28px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-control {
        font-size: 14px;
    }
    
    .primary-btn {
        width: 100%;
        text-align: center;
    }
}

/* Receipt Styles */
.receipt-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.receipt-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #c5a47e, #d4b898);
}

.receipt-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.receipt-logo {
    width: 120px;
    height: auto;
    margin-right: 30px;
}

.receipt-title {
    flex-grow: 1;
}

.receipt-title h1 {
    font-size: 24px;
    color: #333;
    margin: 0 0 10px 0;
}

.receipt-date, .receipt-number {
    color: #666;
    margin: 5px 0;
    font-size: 14px;
}

.receipt-body {
    margin-bottom: 30px;
}

.receipt-section {
    margin-bottom: 25px;
}

.receipt-section h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
}

.receipt-table td {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.receipt-table td:first-child {
    width: 40%;
    color: #666;
}

.receipt-table .total-row {
    background-color: #f9f9f9;
    font-weight: bold;
}

.receipt-table .total-row td {
    border-top: 2px solid #eee;
    padding: 15px 10px;
}

.receipt-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.receipt-footer p {
    color: #666;
    margin: 5px 0;
    font-size: 14px;
}

.receipt-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #c5a47e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #b39368;
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .receipt-container {
        margin: 20px;
        padding: 20px;
    }

    .receipt-header {
        flex-direction: column;
        text-align: center;
    }

    .receipt-logo {
        margin: 0 0 20px 0;
    }

    .receipt-table td {
        display: block;
        width: 100%;
        text-align: left;
    }

    .receipt-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
    }

    .receipt-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .receipt-container {
        box-shadow: none;
        margin: 0;
        padding: 20px;
    }

    .receipt-actions {
        display: none;
    }

    .receipt-container::before {
        display: none;
    }
} 