.delete-btn {
    color: #f83d4f;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
}

.keypad-container {
    /* background-color: #f8f9fa; */
    border-radius: 0px;
    /* padding: 10px; */
    /* padding-top: 1px; */
}

.keypad-btn {
    /* height: 60px; */
    font-size: 34px;
    font-weight: 600;
    background-color: #7d7e80;
    /* height: var(--pos-btn-height) !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 2px;
    color: white;
}

/* ===== Custom hover background for keypad (number) buttons ===== */
.keypad-btn:hover {
    background-color: #34ff71;
    /* ✅ choose any color */
    color: #000000;
    /* optional text color */
}

.action-btn {
    height: 60px !important;
    font-size: 13px;
    font-weight: 600;
}

.pay-btn {
    height: 100px;
    font-size: 26px;
    font-weight: 700;
    /* background: linear-gradient(135deg, #28a745, #20c997); */
    border: none;
    background-color: #1e8630;
    color: white;
}

.pay-btn:hover {
    background-color: #1bd270;
    color: black;
}

.enter-btn,
.backspace-btn {
    height: 200px !important;
    font-size: 26px;
    color: white;
}

.enter-btn {
    background-color: #16537c;
}

.enter-btn:hover {
    background-color: #0985d8;
}

.backspace-btn {
    background-color: #c95509 !important;
}

.backspace-btn:hover {
    background-color: #ff8e71 !important;
}

/* .paynow-btn {
    background-color: #138113 !important;
}

.paynow-btn:hover {
    background-color: #15f515 !important;
} */


/* === Unified button height === */
/* :root {
    --pos-btn-height: 100px;
} */

.function-btn-1,
.function-btn-2,
.function-btn-3,
.function-btn-4,
.function-btn-5,
.function-btn-6,
.function-btn-7,
.function-btn-8 {
    background-color: #17a2b8;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.function-btn-1,
.function-btn-2,
.function-btn-3,
.function-btn-4,
.function-btn-5,
.function-btn-6,
.function-btn-7,
.function-btn-8 {
    /* height: var(--pos-btn-height) !important; */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px !important;
    border-radius: 4px;
    color: white;
}

/* Change hover background for all function buttons */
.function-btn-1:hover,
.function-btn-2:hover,
.function-btn-3:hover,
.function-btn-4:hover,
.function-btn-5:hover,
.function-btn-6:hover,
.function-btn-7:hover,
.function-btn-8:hover {
    background-color: #16148f;
    /* ✅ your desired hover color */
    color: #fff;
    /* optional text color */
}



/* ===== Optional: custom hover for the modal keypad too ===== */
.modal-keypad-btn:hover {
    background-color: #0a3617 !important;
    /* ✅ choose any color */
    color: #fff !important;
}