/* Basic styling for the container */
.catering-budget-container {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Guest and menu sections */
.guest-selection-container, .menu-selection-container, .budget-summary-container, .lead-capture-container {
    margin-bottom: 20px;
}

/* Dish item styling */
.dish-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.dish-item:last-child {
    border-bottom: none;
}
.dish-item input[type="checkbox"] {
    margin-right: 10px;
}
.dish-item label {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.dish-price {
    font-weight: bold;
}

/* Lead form styling */
#catering-lead-form input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#submit-lead-btn {
    width: 100%;
    padding: 12px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
#submit-lead-btn:hover {
    background-color: #005a87;
}

/* Messages */
#form-messages {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}
.success {
    background-color: #d4edda;
    color: #155724;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
}
.info {
    background-color: #cce5ff;
    color: #004085;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .catering-budget-container {
        padding: 10px;
    }
}