.tokati-donation-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.donation-project-select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 25px;
    border: 2px solid #005587;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005587' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.donation-project-select:hover {
    border-color: #003d61;
}

.donation-project-select:focus {
    outline: none;
    border-color: #003d61;
    box-shadow: 0 0 0 3px rgba(0, 85, 135, 0.2);
}

.donation-amount-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.donation-amount-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.amount-button {
    padding: 10px 20px;
    background-color: #005587;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.amount-button:hover {
    background-color: #003d61;
}

.paypal-donate-button {
    width: 100%;
    padding: 15px;
    background-color: #c41230;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.paypal-donate-button:hover {
    background-color: #a30f28;
}
