.dons-progress {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.dons-progress-bar-container {
    width: 100%;
    height: 30px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dons-progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #6b3fa0 0%, #8b5fc0 100%);
    border-radius: 15px;
    transition: width 0.6s ease;
    min-width: 2%;
}

.dons-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.dons-progress-percent {
    color: #666;
    font-size: 0.9rem;
}

.dons-form {
    margin-top: 2rem;
}

.dons-gateways {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.paypal-btn {
    background: #0070ba;
    color: #ffffff;
}

.paypal-btn:hover {
    background: #005ea6;
}

.stripe-btn {
    background: #635bff;
    color: #ffffff;
}

.stripe-btn:hover {
    background: #4e46e5;
}


