.open-modall:hover {
    opacity: 0.8;
}

.modall {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-contentl {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #241919;
}

.closel {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #241919;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center;
}

th,
td {
    padding: 15px;
    border: 2px solid #241919;
}

th {
    background: linear-gradient(180deg, #241919, #fff);

    color: black;
}

.modal-showl {
    display: flex;
}

.col-first {
    width: 50%;
}

.col-second {
    width: 20%;
}

@media screen and (max-width: 560px) {
    .modal-contentl {
        max-width: 90%;
        padding: 10px;        
    }
    tbody {
        max-width: 90%;
    }
    th, td {
        padding: 5px;
        border: 1px solid #241919;
        font-size: 12px;
    }
  }

  