.modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}

.modal {
  display: flex;
  flex-direction: column;
  width: 50%;
  min-height: 100px;
  max-height: 80%;
  overflow: auto;
  background-color: #f1f1f1;
  padding: 0px 20px;
  border-radius: 6px;
  border: 1px solid #f9f9f9;
}
.modal .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.modal .header .title {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
}
.modal .header .close {
  display: inline-block;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.modal .header .close:hover {
  color: #000;
}
.modal .content {
  display: block;
}
.modal .content .table-cont {
  display: block;
}
.modal .content .table-cont .head {
  display: block;
  padding: 10px;
  background-color: #0c1427;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}
.modal .content .table-cont table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.modal .content .table-cont table th, .modal .content .table-cont table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.modal .content .table-cont table th {
  background-color: #f2f2f2;
}
.modal .content .table-cont table td {
  width: 80px;
}