﻿/* Popup overlay */
#popupOverlay {
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* Popup box */
#popupBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    /*min-width: 300px;*/
    width:80%;
    max-width:1200px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    max-height:50vh;
}

/* Close button */
#closePopupBtn {
    position:absolute;
    right:1px;
    cursor: pointer;
    font-size: 14pt;
    border: none;
    background: none;
    color: ghostwhite;
    font-weight:600;
    transform:translateX(-2px) translateY(2px);
}
#closePopupBtn:hover{
    background-color:blanchedalmond;
    color:black;
}
.popup-button-container {
    background-color: navy;
    height: 34px;
    text-align:center;
    color:white;
    font-weight:600;
    font-size:15pt;
    width:100%;
}
.stephens_dialog_contents_div {
    background-color: floralwhite;
    overflow-y: auto;
    max-height:calc(50vh - 32px - 40px);
    padding:20px;
}