.modal-overlay {
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}

.modal {
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
  overflow: auto;
  background-color: #FFF;
  padding: 20px;
  border-radius: 20px;
  width: 70%;
  display: none;
}
.modal__close {
  margin-left: auto;
  cursor: pointer;
}

.suppliers {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 425px) {
  .suppliers {
    padding: 20px 5px;
  }
}

.client_name {
  font-weight: 700;
  margin-bottom: 20px;
}

.category {
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.category__name {
  color: #3C7034;
  font-weight: 700;
  font-size: 1.2rem;
}
.category__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  text-align: left;
  margin-top: 20px;
  font-size: 1rem;
}
@media only screen and (max-width: 920px) {
  .category__table {
    font-size: 0.9rem;
  }
}
.category__table td, .category__table th {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}
.category__table th:not(:last-child), .category__table td:not(:last-child) {
  border-right: 1px solid #CCC;
}
.category__table th:not(:first-child), .category__table td:not(:first-child) {
  padding-left: 20px;
}
.category__table thead tr th {
  margin-bottom: 10px;
  padding-top: 0;
  color: #3C7034;
}
.category__table tbody tr {
  text-align: left;
  padding: 10px;
}
.category__table tbody tr td {
  color: #9B9B9B;
  font-weight: 500;
}
.category__table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 425px) {
  .category__table, .category__table thead, .category__table tbody, .category__table th, .category__table td, .category__table tr {
    display: block;
  }
  .category__table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .category__table tr:not(:last-child) {
    margin-bottom: 10px;
  }
  .category__table tr:nth-child(even) {
    background-color: #F5F5F5;
  }
  .category__table td {
    border: none !important;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
    white-space: normal;
    text-align: left;
  }
  .category__table td:before {
    content: attr(data-title);
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}
.category__table .document-btn {
  padding: 10px;
  background-color: #93DD00;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
}