/* Wedding Venue Booking Frontend Styles */
.wvb-booking-form {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
}

.wvb-booking-form h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 2px solid #e44d26;
    padding-bottom: 10px;
}

.wvb-form-section {
    margin-bottom: 25px;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border-left: 4px solid #e44d26;
}

.wvb-form-section h4 {
    margin-top: 0;
    color: #e44d26;
}

.wvb-form-field {
    margin-bottom: 15px;
}

.wvb-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.wvb-form-field input[type="text"],
.wvb-form-field input[type="number"],
.wvb-form-field input[type="date"],
.wvb-form-field select,
.wvb-form-field textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
}

.wvb-form-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-style: italic;
}

.wvb-addons-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    background: white;
}

.wvb-addon-item {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 3px;
}

.wvb-addon-item label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

.wvb-addon-item input[type="checkbox"] {
    margin-right: 10px;
}

.wvb-addon-type {
    color: #666;
    font-style: italic;
    margin-left: 5px;
}

.wvb-addon-description {
    margin: 5px 0 0 25px;
    color: #666;
    font-size: 0.9em;
}

#wvb-cost-breakdown {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.wvb-cost-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.wvb-total-cost {
    border-top: 2px solid #e44d26;
    border-bottom: none;
    padding-top: 8px;
    font-size: 1.1em;
    color: #e44d26;
}

.wvb-form-actions {
    text-align: center;
    margin-top: 20px;
}

#wvb-book-now {
    background: #e44d26;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

#wvb-book-now:hover {
    background: #c53d1f;
}

#wvb-book-now:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#wvb-menu-details {
    margin-top: 15px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 3px;
    border-left: 3px solid #e44d26;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wvb-booking-form {
        padding: 15px;
        margin: 10px 0;
    }
    
    .wvb-form-section {
        padding: 10px;
    }
    
    .wvb-cost-line {
        flex-direction: column;
    }
    
    .wvb-cost-line span:last-child {
        margin-top: 5px;
    }
}