.fpd-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #f0f0f0;
    border-radius: 15px;
    font-family: Arial, sans-serif;
}

.fpd-header h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
}

.fpd-form-body {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.fpd-form-left, .fpd-form-right {
    width: 48%;
}

.fpd-form-group {
    margin-bottom: 1.2rem;
}

.fpd-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.fpd-form-group input,
.fpd-form-group select,
.fpd-form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 25px;
    background-color: #e6f7f7;
    font-size: 1rem;
    box-sizing: border-box;
}

#fpd-menu-items {
    border: 1px solid #ccc;
    background-color: #e6f7f7;
    padding: 1rem;
    border-radius: 25px;
    height: 200px; /* Adjust as needed */
    overflow-y: auto;
    column-count: 2;
    column-gap: 1rem;
}

.fpd-menu-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fpd-menu-item input[type="checkbox"] {
    width: auto; /* Override default width */
    margin-right: 0.5rem;
}

.fpd-cake-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.fpd-cake-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.cake-item-quantity {
    width: 60px !important; /* Make quantity input smaller */
    margin-left: auto;
}

.fpd-form-group select[multiple] {
    height: 150px;
}

.fpd-footer {
    display: flex;
    justify-content: space-between; /* Align items */
    align-items: center;
    margin-top: 2rem;
    gap: 1.5rem;
}

.fpd-admin-cost {
    display: flex;
    align-items: center;
}

.fpd-admin-cost label {
    margin-left: 0.5rem;
}

.fpd-total-amount {
    background-color: #e6f7f7;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-align: right;
}

.fpd-total-amount label {
    font-weight: bold;
    color: #555;
    margin-right: 1rem;
}

#fpd-total-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.fpd-donate-button {
    background-color: #ff4136;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fpd-donate-button:hover {
    background-color: #e0342a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fpd-form-body {
        flex-direction: column;
    }

    .fpd-form-left, .fpd-form-right {
        width: 100%;
    }

    .fpd-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .fpd-total-amount {
        text-align: center;
        margin-bottom: 1rem;
    }
}