.booking-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.booking-popup-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 600px;
}

.booking-popup-content {
    padding: 20px;
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-submit {
    margin-top: 20px;
}

.submit-btn {
    background: #658161;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-success {
    color: #27ae60;
    background: #e8f8ee;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.form-error {
    color: #e74c3c;
    background: #fde8e7;
    padding: 15px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

