/* ========== LOVETTI LAFUA FOUNDATION DONATION FORM STYLES ========== */

.llfd-donation-container {
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    font-family: sans-serif;
}

.llfd-form-group {
    margin-bottom: 20px;
}

.llfd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.llfd-donation-container input[type="text"],
.llfd-donation-container input[type="email"],
.llfd-donation-container input[type="number"],
.llfd-donation-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding doesn't affect total width */
}

/* Amount Buttons */
.llfd-amount-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.llfd-amt-btn {
    flex: 1;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #498794;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.llfd-amt-btn:hover,
.llfd-amt-btn.active {
    background-color: #0056b3;
    color: #ffffff;
}

/* Custom Amount Input */
.llfd-custom-amount-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.llfd-currency-symbol {
    position: absolute;
    left: 15px;
    font-weight: bold;
    color: #555;
    font-size: 16px;
    z-index: 2; /* Ensures it stays above the input text */
}

/* Specific styling for the custom amount input */
#llfd_custom_amount {
    padding-left: 30px; /* Added more space so text doesn't hit the symbol */
}



/* Submit Button */
.llfd-donate-btn {
    width: 100%;
    padding: 15px;
    background-color: #498794; /* A trusting green color */
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.llfd-donate-btn:hover {
    background-color: #218838;
}