body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Background color of the website */
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Set a high z-index to ensure the pop-up appears on top */
}

.popup-content {
    width: 300px;
    height: fit-content;
    text-align: center;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

table {
    width: 50%;
    margin-bottom: 20px;
}

table td {
    padding: 5px;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049; /* Darker green color on hover */
}

/* Temporary Popup */
.tempPopup{
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    width: 400px;
    z-index: 100;
    padding: 20px 30px;
}

.tempPopupHeading{
    display: flex;
    justify-content: space-between;
}

.popupHeading{
    margin-bottom: 1.5rem;
}

.closeBtnTempPopup{
    width: 55px;
    background-color: black;
    color: white;
    text-align: center;
    height: 33px;
    cursor: pointer;
    border-radius: 50%;
}

.tempPopupForm{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tempPopupInput{
    outline: none;
    border-top: 5px;
    border-right: 0;
    border-left: 0;
    font-size: 17px;
}

.activeTempPopup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 992;
}

.confirmationPopup{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.confirmationMsg{
    display: flex;
    flex-direction: column;
}

.confirmationMsg .ok-btn{
    cursor: pointer;
    text-align: center;
}

@media(max-width: 800px){
    .closeBtnTempPopup{
        width: 45px;
    }
}

@media(max-width: 406px){
    .tempPopup{
        width: 355px;
    }
}