button {
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.donations-menu {
    position: fixed;
    top: 0;
    right: -40%; /* Hide off-screen */
    width: 20%;
    height: 100%;
    background-color: #f1f1f1;
    transition: right 0.3s;
    box-sizing: border-box;
    border: thin solid grey;
    overflow-y: auto;
}
.donations-menu .closePopup{
    position: absolute;
    top:2%;
    left:2%;
    /* height:2em; */
}

#donationsButton {
    position: absolute;
    top: 4%;
    right: 3%;
    font-size: 1.125em;
    /* padding: 10px; */
    margin: 20px 0;
}

#closeDonationsButton{
    position: absolute;
    top: 4%;
    right: 15%;
    font-size: 1.125em;
}

#coffeeCup{
    height: 3em;
    position: absolute;
    top: 4%;
    left: 15%;
}

#giftSelect{
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 21px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 10px;
    cursor: auto;
}

.gift-button {
    border: none;
    background-color: white;
    /* margin: 0 5px; */
    /* width: 36px;
    height: 36px; */
    border-radius: 18px;
    cursor: pointer;
}

.gift-button:hover,
.gift-button.active {
    background-color: #4CAF50;
    color: white;
    /* transform: scale(1.1); */
}
#customGift {
    /* border: 1px solid #dee2e6; */
    /* border-radius: 18px; */
    padding: 10px;
    margin: 5px;
    padding-left: 10px;
    width: 2.5em;
    text-align: center;
    outline: none;
    transition: border-color 0.3s;
}

button#donateButton{
    background-color: #4CAF50;
    color: white;
    padding: 0.5%;
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
}