.donation-form-wrapper {
    max-width: auto;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

#donation-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.donation-amount {
    display: none;
    align-items: center;
    margin: 15px 0 25px;
    position: relative;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.donation-amount.visible {
    display: flex !important;
}

.donation-amount input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #E9BB1E;
    border-radius: 4px;
    margin-right: 5px;
    background: #ffffff;
    color: #7F3A23;
}

.donation-amount span {
    position: absolute;
    right: 25px;
    font-size: 16px;
    color: #7F3A23;
}

.donation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    justify-content: flex-start;
}

.donation-buttons button {
    padding: 12px 20px;
    border: 2px solid #E9BB1E;
    background: #F9F6ED;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    min-width: 120px;
    color: #7F3A23;
}

.donation-buttons button.active {
    background: #E9BB1E;
    color: #7F3A23;
    border-color: #E9BB1E;
}

.donation-buttons button.custom-amount {
    background: #F9F6ED;
    border-color: #E9BB1E;
    color: #7F3A23;
}

.donation-buttons button:hover {
    background: #E9BB1E;
    color: #7F3A23;
    border-color: #E9BB1E;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(233, 187, 30, 0.2);
}

/* Responsywność dla małych ekranów */
@media (max-width: 768px) {
    .donation-buttons button {
        flex-basis: calc(50% - 10px) !important;
    }
}

@media (max-width: 480px) {
    .donation-buttons button {
        flex-basis: 100% !important;
    }
}

/* Aktualizacja innych elementów formularza związanych z przyciskami */
.submit-wrap input[type="submit"] {
    padding: 16px 45px;
    background: #E9BB1E;
    color: #7F3A23;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(233, 187, 30, 0.2);
}

.submit-wrap input[type="submit"]:hover {
    background: #E9BB1E;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(233, 187, 30, 0.3);
}

.submit-wrap input[type="submit"]:disabled {
    background: #F9F6ED;
    color: #7F3A23;
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

select, 
input[type="text"], 
input[type="email"], 
input[type="tel"] {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    color: #7F3A23;
    transition: border-color 0.3s ease;
}

select:focus, 
input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus {
    border-color: #E9BB1E;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 187, 30, 0.1);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    flex: 1;
    margin-bottom: 0;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    margin: 3px 10px 0 0;
}

.submit-wrap {
    margin-top: 30px;
    text-align: center;
}

.submit-wrap p {
    font-size: 18px;
    margin-bottom: 15px;
}

.submit-wrap .total-amount {
    font-weight: bold;
    color: #7F3A23;
}

.rodo {
    display: block;
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.rodo p {
    margin-bottom: 10px;
}

.rodo a {
    color: #7F3A23;
    text-decoration: none;
}

.rodo a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #donation-form {
        padding: 20px;
    }
    
    .donation-buttons button {
        flex: 1 1 calc(50% - 12px);
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .donation-buttons button {
        flex: 1 1 100%;
    }
    
    .submit-wrap input[type="submit"] {
        width: 100%;
    }
}

.alert {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 16px;
    border-left: 4px solid;
}

.alert.success {
    background-color: #e7f5eb;
    color: #0a6b1d;
    border-left-color: #4CAF50;
}

.alert:not(.success) {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

                .campaign-progress-wrapper {
                    margin: 20px 0;
                    font-family: Arial, sans-serif;
                }
                .campaign-progress-bar {
                    background: #f0f0f0;
                    height: 20px;
                    border-radius: 10px;
                    overflow: hidden;
                    margin: 10px 0;
                }
                .campaign-stats {
                    display: flex;
                    justify-content: space-between;
                    margin-top: 5px;
                    font-size: 14px;
                }
                .campaign-contributors {
                    margin-top: 5px;
                    font-size: 14px;
                    color: #666;
                }

@media (max-width: 480px) {
    .donation-buttons, .form-row {
        flex-direction: column;
    }
}