/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

/* Modal Content Box */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.close {
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    color: #555;
}

.close:hover {
    color: red;
}

/* Scrollable Content */
.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 10px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}