.popup-cant {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  z-index: 10000;
}

.searchCant {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(0, 0, 0, 3);
  background-color: var(--sec_color);
  padding-top: 10px;
  border-radius: 10px;
  max-width: 90%;
}

.searchCant .div-table-cant {
  width: 100%;
  overflow-x: auto;
}

.searchCant .title-cant {
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
  top: 15px;
  left: 15px;
}

.searchCant .close-btn-cant {
  position: sticky;
  float: right;
  top: 0px;
  font-size: 1.3em;
  cursor: pointer;
  padding: 1em;
}

.searchCant .table-cant {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.searchCant .table-cant th {
  font-size: 1rem;
  min-width: 3em;
}

.searchCant .table-cant thead th {
  background: var(--ft_color);
  color: var(--sec_color);
  text-align: left;
  font-weight: bold;
  border: 1px solid var(--sec_color_darker);
}

.searchCant .table-cant th,
.searchCant .table-cant td {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.searchCant .table-cant tbody tr {
  border-bottom: 1px solid #dddddd;
}

.searchCant .table-cant tbody tr:nth-of-type(even) {
  background: var(--sec_color_darker);
}

.searchCant .table-cant tbody tr:nth-of-type(odd) {
  background: var(--sec_color);
}

.searchCant .table-cant tbody tr:last-of-type {
  border-bottom: 2px solid var(--ft_color);
}

@media (max-width: 37.5rem) {
  .searchCant .title-cant {
    font-size: 1.1rem;
    max-width: 13ch;
    display: block;
  }
}
