body {
    font-family: "Montserrat Alternates", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* css to handle the chaging of the red as it is being input */
.circle {
    width: 3rem;
    height: 3rem;
    border: 2px solid black;
    border-radius: 50%;
    display: inline-block;
    margin: 0.5rem;
    background-color: white;
}

.filled {
    background-color: red;
}

.pink, .total_price{
    color: #FF0040;
}
.bgpink{
    background-color: #FF0040;
}
.discount, .quantity{
    color: gray;
}

.payment-card {
    border: 2px solid black;
    transition: border-color 0.3s ease;
}

.payment-card.selected {
    border-color: #FF0040; 
}


input#amount-paid, span#change-amount {
    border-radius: 0; 
}


#close-modal {
    border-color: #FF0040;
}


.border-gray-400 {
    border-color: #cbd5e0; 
}

.bg-gray-100 {
    background-color: #f7fafc; 
}