
/* Modal CSS */
.trigger{
      text-align: center;
    padding: 7px 13px;
    background: #3e3e3e;
    color: #fff;
    font-size: 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    font-family: cursive;
}
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 15;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px 25px;
    width: 440px;
    border-radius: 0;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}
.close-button {
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    position: absolute;
    right: 9px;
    top: 5px;
    font-size: 21px;
    font-weight: 300;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.modal-content::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.modal-content::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}
.modal-content::-webkit-scrollbar-thumb
{
	background-color: #000000;
	border: 2px solid #555555;
}
body:has(.modal.show-modal) {
    overflow: hidden;
}