/* Popup container style */
.popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Dim background */
    z-index: 1000; /* Ensure it appears above other elements */
}

/* Hidden state (so it doesn't appear initially) */
.hidden {
    display: none !important;
}

/* Popup content styling */
.popup-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 40px;
    max-width: 400px;
    min-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Popup button styling */
#popup-close {
    /*margin: 10px;*/
    /*padding: 4px 20px;*/
    /*background-color: #955151;*/
    color: #343434;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 26px;
}

.close-div {
    display: flow-root;
}

.p-alert-popup{
    text-align: left;
    text-transform: capitalize;
    font-size: 13px;
    line-height: 23px;
    font-weight: 600;
}

.div-alert-popup {
    border-left: 4px solid #ba5e5e;
    padding-left: 6px;
}
/*#popup-close:hover {*/
/*    background-color: #bb3b3b;*/
/*}*/