.remodal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background-color: white;
    padding: 20px;
    border: 1px solid black;
    width: 80%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.remodal h3 {
    margin-top: 0;
}

.remodal table {
    width: 100%;
    border-collapse: collapse;
}

.remodal table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.remodal table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.remodal .remodal-cancel {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
}

.remodal .remodal-cancel:hover {
    background-color: #0056b3;
}