/* Container styling to mimic the white box (Без змін) */
.donation-form-container {
    max-width: 480px; 
    /*margin: 0 auto;*/
    border: 1px solid #e0e0e0;
    border-radius: 10px; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    overflow: hidden; 
}

/* Tab Panel Styling (Без змін) */
.tab-panel {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #ffffff;
    height: 70px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.tab-button {
    font-size:20px; font-weight: bold;
    flex-grow: 1; border: none; padding: 15px 0; cursor: pointer; transition: background-color 0.3s ease, opacity 0.3s ease;
    color: #ffffff; opacity: 0.6;
}
.tab-button[data-tab="monthly"] {
    background-color: #EF78AB; border-top-left-radius: 10px; 
}
.tab-button[data-tab="single"] {
    background-color: #127CC1; border-top-right-radius: 10px; 
}
.tab-button.active {
    opacity: 1;
}

/* Content Area Styling (Без змін) */
.donation-content {
    padding: 30px;
    text-align: center;
}
.donation-prompt {
    font-size: 18px; font-weight: 600; margin-bottom: 20px; color: #333333; font-family: 'Roboto';
}

/* Amount Groups Layout (Без змін) */
.amount-buttons-group {
    display: none; 
    flex-wrap: wrap; 
    justify-content: space-between;
    gap: 10px;
}
.amount-buttons-group.active {
    display: flex; 
}

/* Donation Amount Buttons Styling (Без змін) */
.amount-button {
    flex: 1 1 20%; 
    padding: 15px 5px;
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #127CC1; 
    color: #127CC1; 
    background-color: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 60px; 
}

/* Стилі для кнопки "Своя сума" (Без змін) */
.custom-amount-button {
    flex: 1 1 100%; 
    margin-top: 10px;
}

/* Стилі для поля вводу суми (Оновлено: видалено стилі для .currency-symbol) */
.custom-input-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    border: 2px solid #127CC1;
    border-radius: 10px;
    padding: 0 15px; 
}

.custom-input-container.hidden {
    display: none;
}

.custom-amount-input {
    flex-grow: 1;
    border: none;
    outline: none;
    font-size: 20px;
    /* Змінено: Збільшуємо padding-left/right, оскільки немає символу валюти */
    padding: 15px 0; 
    text-align: left; /* Щоб сума починалася зліва */
    color: #127CC1;
    background: transparent;
    -moz-appearance: textfield;
}

.custom-amount-input::-webkit-outer-spin-button,
.custom-amount-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.amount-button.active {
    background-color: #127CC1; 
    color: #ffffff; 
}
.amount-button:hover:not(.active) {
    background-color: #e0f0fb; 
}