* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #fafbfe !important;
    font-family: 'Open Sans', sans-serif;
}

.sidebar{
    width: 280px;
}

.content-container{
    display: flex;
    padding: 0 1rem;
    flex: 1;
    gap: 1rem;
}

.row-container{
    display: flex;
    flex-direction: column;
}

.user-container{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-img{
    width: 32px;
    height: 32px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background: lightgrey;
}

.table-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title{
    font-size: 18px;
    margin: 0;
    line-height: 75px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.navbar-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 0 solid #dee2e6;
    z-index: 1000;
    background: #FFFFFF;
}

.tekbin-card{
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 16vh;
    padding: 1rem;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.15);
}

.tekbin-logs{
    display: flex;
    height: 33vh;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: scroll;
    border: none;
    border-radius: 8px;
}

.tekbin-log-container{
    padding: 0.5rem;
    background: #FFFFFF;
}

.tekbin-card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tekbin-card-header h5{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(108, 117, 125, 0.75);;
}

.tekbin-card-body{
    display: flex;
    margin: 0.5rem 0;
}

.tekbin-card-body h3{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: rgb(108, 117, 125);;
}

.tekbin-log-header h5{
    font-size: 0.5rem;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(108, 117, 125, 0.75);;
}

.tekbin-log-body h3{
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.1;
    color: rgb(108, 117, 125);;
}

.logs-container{
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fafbfe;
}

.pagination{
    margin-top: 1rem;
}

@media screen and (max-width: 486px){
    .sidebar{
        width: 80px;
    }

    .sidebar-header{
        display: none;
    }

    .content-container{
        flex-direction: column;
        overflow: auto;
        gap: 0.5rem;
    }

    .nav-link span {
        display: none;
    }

    .nav-link i {
        margin-right: 0 !important;
    }

    .user-container{
        justify-content: center;
    }

    .user-container strong{
        display: none;
    }

    .col-6{
        width: 100% !important;
        margin-top: 0.5rem !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media screen and (min-width: 487px) and (max-width: 768px){
    .sidebar{
        width: 200px;
    }

    .content-container{
        gap: 0.5rem;
        flex-direction: column;
    }
}

@media screen and (min-width: 769px) and (max-width: 1280px){
    .sidebar{
        width: 200px;
    }

    .content-container{
        gap: 0.5rem;
        flex-direction: column;
    }

    .page-title{
        line-height: 60px;
    }
}
