#s-toolbar {
    width: 100%;
    height: 50px;
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    align-items: center;
    background-color: black;
    z-index: 3;
}

#s-toolbar-l {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
}

#s-toolbar-r {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 10px;
}

#s-side-menu {
    width: 250px;
    height: 100%;
    background-color: white;
    z-index: 1;
    transition: 0.3s;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#s-side-menu::-webkit-scrollbar {
    display: none;
}

#s-conatiner {
    width: 100vw;
    height: calc(100vh - 50px);
    display: flex;
}

#s-content {
    width: calc(100vw - 250px);
    height: 100%;
    background-color: #e0e0e0;
    z-index: 2;
    transition: 0.3s;
    overflow-y: auto;
    padding: 10px;
}

#s-content-container {
    width: 100%;
    height: calc(100% - 80px);
    flex: 1, 1, auto;
}

#s-toolbar-l-title {
    font-size: 19px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
}

.s-toolbar-btn {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    font-size: 18px;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 5px;
}

.s-toolbar-btn:hover {
    background-color: #888;
}

.s-side-menu-tab {
    height: 40px;
    padding: 8px;
    margin: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
    border-radius: 15px;
    transition: 0.2s;
}

.s-side-menu-tab-name {
    height: 40px;
    padding: 8px;
    margin: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #444;
}

.s-side-menu-tab-active {
    height: 40px;
    padding: 8px;
    margin: 5px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #01ACC2;
    background-color: #eee;
    border-radius: 15px;
}

.s-side-menu-tab:hover {
    background-color: #eee;
}

#s-dialog-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
}

.s-dialog-container-dialog-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.s-dialog-container-dialog-sheet {
    position: absolute;
    background-color: white;
    border-radius: 9px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

thead {

    position: sticky;
    top: -12px;
    margin-top: 0;

}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

td,
th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    font-family: 'Courier New', monospace;
}

th {
    background-color: #f2f2f2;
}

tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

tbody tr:hover {
    background-color: #ddd;
}