/* .table-container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    gap: 24px;
} */

.table-2024 {
    /* border-radius: 4px;
    height: calc(100vh - 370px);
    overflow-y: auto; */
}

.table-2024 table {
  margin-bottom: 0px;
  border-spacing: 0;          /* no gaps */
  border-radius: 12px;        /* apply here */
  overflow: hidden;           /* clip corners */
}

.table-2024 table thead tr:first-child th:first-child {
  border-top-left-radius: 12px;
}
.table-2024 table thead tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

.table-2024 table thead {
    height: 89px;
    background: #FFFFFF;
    border-bottom: 3px solid #a2c0fd;
    border-radius: 12px;

}

.table-2024 table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    /* width: 20%; */
    border-bottom: 0px;
    color: #586174;
    padding: 16px;
    font-size: 18px;
    font-weight: 500;
    vertical-align: middle;
}

.table-2024 table tbody tr td {
    /* width: 20%; */
    border-color: transparent;
    border-bottom: 0px;
    color: #8993A5;
    padding: 16px;
    vertical-align: middle;
    font-size: 16px;
    font-weight: 500;
}

.table-2024 table tbody tr {
    position: relative;
    height: 59px;
    border: none;
    background-color: white;
}


.table-2024 table tbody tr:last-child td {
    border-bottom: 0px;
}

.table-2024 table thead th:first-child {
    border-radius: 4px 0px 0px 4px;
}

.table-2024 table thead th:last-child {
    border-radius: 0px 4px 4px 0px;
}

.table-2024 table tbody tr:first-child td:first-child {
    border-top-left-radius: 4px;
}

.table-2024 table tbody tr:first-child td:last-child {
    border-top-right-radius: 4px;
}

.table-2024 table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 4px;
}

.table-2024 table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 4px;
}

.table-2024 tbody::before {
    content: "-";
    display: block;
    line-height: 8px;
    color: transparent;
}

.table-2024 table tbody tr.awake td>* {
    color: var(--orange);
    font-weight: 600 !important;
}

.table-2024 table tbody tr.notify td:last-child {
    position: relative;
}

.table-2024 table tbody tr.notify td:last-child::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: rgba(240, 65, 65, 1);
    margin-left: auto;
    vertical-align: middle;
}

.table-2024 tbody,
td,
tfoot,
th,
tr {
    border: none;
}


.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #FFFFFF;
    color: #8993A5;
}
.table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-accent-bg: #F0F5FF;
    color: #8993A5;
}

.usecase-tab.nav-pills .nav-link {
    padding: 8px 16px;
    height: 40px;
    background: #F3F3F3;
    border: 1px solid #C8CAD0;
    border-radius: 8px;
    color: #5861748F;
}

.usecase-tab.nav-pills .nav-link.active,
.usecase-tab.nav-pills .show>.nav-link {
    padding: 8px 16px;
    height: 40px;
    background: #E6EEFF;
    border: 1.69px solid #1865FF;
    border-radius: 8px;
    color: #1865FF;
}