/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.pc-form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.pc-form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.pc-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.pc-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.pc-form-field input,
.pc-form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pc-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.pc-menu-item:last-child {
    border-bottom: none;
}

.pc-menu-item-details {
    flex-grow: 1;
}

.pc-menu-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.pc-menu-item-price {
    color: #0073aa;
    font-weight: 600;
}

.pc-menu-item-quantity {
    width: 80px;
    margin-left: 15px;
}

.pc-total {
    text-align: right;
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.pc-submit-button {
    background: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.pc-submit-button:hover {
    background: #005177;
}

.pc-error {
    color: #dc3232;
    margin-top: 5px;
}