.bwd-donation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}

.bwd-title {
    margin: 0;
    font-size: 1.2em;
}

.bwd-description {
    font-size: 0.9em;
    color: #666;
}

.bwd-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bwd-preset-btn {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.bwd-preset-btn:hover {
    background: #f5f5f5;
}

.bwd-preset-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.bwd-custom-amount {
    width: 100%;
}

.bwd-amount-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bwd-recurring-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.bwd-recurring-badge {
    display: inline-block;
    padding: 5px 10px;
    background: #eef;
    color: #336;
    border-radius: 4px;
    font-size: 0.85em;
}

.bwd-submit-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.bwd-submit-btn:hover {
    background: #0056b3;
}

.bwd-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.bwd-message {
    margin-top: 10px;
    font-size: 0.9em;
}

.bwd-error {
    color: #dc3545;
}

.bwd-success {
    color: #28a745;
}

.bwd-fee-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bwd-fee-controls a {
    text-decoration: none;
}

.bwd-edit-form {
    display: flex;
    gap: 5px;
}

.bwd-edit-amount {
    width: 80px !important;
    padding: 5px !important;
    font-size: 14px !important;
}

.bwd-save-donation {
    padding: 5px 10px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    min-height: auto !important;
}

.bwd-fee-controls.processing {
    opacity: 0.5;
    pointer-events: none;
}
