.modal{
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 25px;
    position: fixed;
    display: flex;
    justify-content: center;
    top: 5%;
    left: 5%;
    right: 5%;
    background-color: rgba(0, 0, 0, 0.8);
    height: 90vh;
}

.open {
    opacity: 1;
    visibility: visible;
}

.modal-btn {
    padding: 10px 25px;
    background-color: #71d1b3;
    border: 1px solid black;
}

.modal-content {
    width: 50%;
    background-color: #fff;
    padding: 2%;
    overflow: auto;
}

@media (max-width: 1175px) {
	.modal-content {
		width: 90%;
	}
}

.btn-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.modalPos {
    text-align: center;
    margin-top: 20px;
}


.table {
    width: 100%;
    padding: 25px 10px;
}

table td, table th {
    border: 1px solid black;
}

td {
    padding: 10px;
    text-align: center;
}

@media (max-width: 520px) {
    .table {
        padding: 5px 5px;
        font-size: 16px;
    }
}