/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.8); /* Black w/ opacity */
}
.modal-header {
    width: 100%;
    height: 50px;
    background-color: #cecaca !important;
}
.modal-body {
    height: 100%;
    overflow: auto;
}
/* Modal Content/Box */
.modal-content {
    display: flex;
    flex-direction: column;
    position: relative;
    max-height: 95vh;
    background-color: #eee2e2;
    margin: 30px auto; /* 15% from the top and centered */
    height: 90vh;
    border: 1px solid #888;
    width: fit-content; /* Could be more or less, depending on screen size */
    overflow: hidden;
}

/* The Close Button */
.close {
    position: absolute;
    top: 6px;
    right: 10px;
    color: #aaa;
    float: right;
    font-size: 32px !important;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
