/* Style for the popup background overlay */
.popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

/* Style for the popup box */
.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 400px;
    min-height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Close (X) button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* Style for the buttons inside the popup */
.popup-buttons {
    margin-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.popup-buttons div {
    padding: 10px 15px;
    cursor: pointer;
}

.popup-single-button {
 background-color: #5cb85c;
 color: white; 
 border-radius: 4px;
 height: 44px;
 width: 125px;
}

.popup-header {
 display:flex;
 justify-content:space-between;
 align-items:center; 
 padding: 12px;
}

.popup-header-text {
 font-size:16px;
 font-weight: 600
}

.popup-header-close {
 cursor: pointer;
}

.popup-error-wrapper {
 border-top: 1px solid lightgray; 
 border-bottom: 1px solid lightgray; 
 text-align: left;
 margin-top: 10px; 
 padding-bottom:24px;
 padding-top: 4px;
}

.popup-error-text {
 margin-left: 8px;
}
