/* Modal container */
.dynamic-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 */
    background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
    display: flex; /* Use flexbox */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Modal content */
.dynamic-modal-content {
    background-color: #fefefe;
    width: 80%; /* 80% of screen width */
    max-height: 80%; /* 80% of screen height */
    padding: 20px;
    border: 1px solid #888;
    overflow-y: auto; /* Enable vertical scroll */
    box-sizing: border-box;
    position: relative; /* Ensure close button is positioned correctly */
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    position: absolute;
    color: rgb(50, 50, 50);
}

/* Close button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
