/**
 * Donation Amount Tracker Public Styles
 */

.donation-amount {
    font-size: 18px;
    font-weight: bold;
    color: #2271b1;
    margin: 15px 0;
}

.donation-amount-progress {
    margin: 15px 0;
}

.donation-amount-progress .progress-text {
    font-size: 18px;
    font-weight: bold;
    color: #2271b1;
    margin-bottom: 10px;
}

.donation-amount-progress .progress-bar {
    height: 20px;
    background-color: #2271b1;
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Default styling for text display */
.donation-amount.text-only {
    font-family: inherit;
    color: inherit;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .donation-amount {
        font-size: 16px;
        padding: 8px;
    }
}
