﻿.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Styling for the modal content */
.modal-content {
    position: relative;
    width: 50%;
    height: 80%; /* set a fixed height */
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    overflow-y: auto;
    margin-left: auto;
    margin-right: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

    /* Styling for the close button hover state */
    .close-btn:hover {
        color: rgb(59, 59, 59);
    }
