.custom__table__container {
    /* max-height: calc(100dvh - 225px); */
    border-radius: 10px;
    background-color: white;
    scrollbar-color: #f1f2f5 white;
    max-width: calc(100dvw - 328px);
    overflow-x: auto;
  }
  
  .custom__table__container::-webkit-scrollbar {
    width: 10px;
  }
  
  .custom__table__container::-webkit-scrollbar-track {
    background: white;
    border-radius: 10px;
  }
  
  .custom__table__container::-webkit-scrollbar-thumb {
    background-color: #f1f2f5;
    border-radius: 10px;
  }
  
  .custom__table__container::-webkit-scrollbar-thumb:hover {
    background-color: #8d99ae;
  }
  
  .custom__table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.75rem;
  }
  
  .custom__table thead tr {
    background-color: #ee264f;
    color: #fff;
    border-radius: 10px;
  }
  
  .custom__table thead th {
    padding: 16px;
    text-align: center;
    border-left: 1px solid #fff;
    font-size: 16px;
    font-weight: bold;
  }
  
  .custom__table tbody tr {
    background-color: #f4f5f7;
    color: #2d394b;
    border-radius: 10px;
    border-color: #fff;
  }
  
  .custom__table tbody td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid #fff;
    font-size: 15px;
  }
  
  .custom__table thead tr th:first-child,
  .custom__table tbody tr td:first-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .custom__table thead tr th:last-child,
  .custom__table tbody tr td:last-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }