
.donation-container {
    font-family: 'Lato', Arial, Helvetica, sans-serif;
    margin: auto;
}

.donation-type {
    display: flex;
    gap: 5%;
    margin-bottom: 20px;
}

.donation-btn {
    border-radius: 10px;
    width: 100%;
    background: white;
    border: 2px solid #ff6929;
    color: #ff6929;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.donation-btn.active {
    border-radius: 10px;
    background: #ff6929;
    color: white;
}

.donation-amount {
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.amount-btn {
    border-radius: 10px;
    width: 100px;
    background: white;
    border: 2px solid #ff6929;
    color: #ff6929;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.amount-btn.active {
    border-radius: 10px;
    background: #ff6929;
    color: white;
}

.donation-summary {
    background: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px 30px 10px;
    margin-top: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.donation-val{
  font-weight: bold;
}

.payment-med{
  font-weight: bold;
  padding-bottom: 20px;
}

.payment-method {
    margin-top: 20px;
}

.payment-option {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: black !important;
    transition: 0.3s;
}

.payment-item:hover {
    background: #ffdfd1;
    color: black;
    border: 1px solid #ff6929;
}

.payment-item img {
    width: 50px;
    height: auto;
}

.card-icons {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.card-icons img {
    width: 40px;
    height: auto;
}

.payment-note {
    margin-top: 10px;
    font-style: italic;
    color: gray;
}

p {
    margin: 0px !important;
}

a.payment-item {
    height: 70px;
}
