html {
    overflow: hidden !important;
}

body {
    background: #89909f;
    padding: 1rem;
    font-size: 12px;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.site-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
}

.site-nav {
    background: #0b121b;
    color: white;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 2rem);
}

.site-nav a {
    color: inherit;
}

.site-nav ul {
    margin-bottom: auto;
    overflow: auto;
}

.site-nav ul li a {
    display: block;
    padding: 0.75rem 0.5rem 0.75rem 2rem;
    position: relative;
}

.site-nav ul li a:hover,
.site-nav ul li a:focus {
    color: #4371c5;
}

.site-nav ul li.active>a {
    background: linear-gradient(to right, #101b2d, transparent);
}

.site-nav ul li.active>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #4676cd;
    width: 5px;
    border-radius: 4px;
    border-radius: 4px;
}

.site-nav ul ul {
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.site-nav ul ul a {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.button-send {
    width: calc(100% - 4rem);
    margin: 1rem 1rem 0;
    border-radius: 10px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    background: #4776cd;
}

.button-send:hover {
    cursor: pointer;
    scale: 1.03;
}

.button-send h3 {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
}

.button-send img {
    width: 18px;
    min-width: 18px;
    height: 18px;
}

.note {
    width: calc(100% - 4rem);
    margin: 1rem;
    background: #171c26;
    border-radius: 10px;
    padding: 1rem;
}

.note h3 {
    font-size: 0.9rem;
    margin: 0 0 0.4rem 0;
}

.note p {
    color: #717783;
}

.name {
    font-size: 1.3rem;
    position: relative;
    margin: 2rem 0 2rem 0;
    padding: 0 2.5rem 0.5rem 2rem;
    width: calc(100% - 3rem);
}

.name svg {
    position: absolute;
    fill: white;
    width: 16px;
    height: 16px;
    right: 0;
    top: 7px;
}

.name::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #4777ce;
    border-radius: 20px;
    position: absolute;
    top: 6px;
    right: -2px;
}

main {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    background: #ebecee;
    margin-left: -2rem;
    position: relative;
    height: calc(100vh - 2rem);
    ;
    display: flex;
    flex-direction: column;
}

main>header {
    padding: 2rem 2rem 0 2rem;
}

main>header .title {
    margin-bottom: .75rem !important;
}

#reports-container {
    display: flex;
    flex: 1;
    height: 0;
    flex-direction: column;
    overflow: auto;
    background: #e5e5e9;
}

.content-columns-reports {
    padding: 1.2rem;
    display: flex;
    border-bottom-right-radius: 2rem;
    gap: 1rem;
}

.content-columns-reports .col {
    flex: calc(100% / 3);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-columns-reports .col h2 {
    margin-left: .75rem;
}

.content-columns-reports .col .report-card {
    display: flex;
    gap: 1rem;
}

.content-columns-reports .item {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
    min-height: 50px;
    border-radius: 10px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    flex: 1;
}

.content-columns-reports .item .filename {
    text-align: center;
    color: #000;
    font-weight: 500;
    font-size: .9rem;
}

.content-columns-reports .item hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 1rem;
    background: transparent;
    border-radius: 100rem;
}

.content-columns-reports .details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    justify-content: center;
    flex: 1;
}

.content-columns-reports .details .details-item {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.content-columns-reports .details .details-item h2 {
    flex: 1;
    margin: 0;
    opacity: .5;
}

.content-columns-reports .details .details-item span {
    color: #000;
    font-weight: 500;
}

.content-columns {
    padding: 1.2rem;
    display: flex;
    background: #e5e5e9;
    flex: 1;
    height: 0;
    overflow-y: auto;
    border-bottom-right-radius: 2rem;
    gap: 1rem;
}

.content-columns .col {
    max-width: 35rem;
    padding: .75rem;
    background: #ebecee;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    gap: .75rem;
    flex: calc(100% / 3);
    width: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.content-columns .col:nth-child(1) {
    border-top: 4px solid #50aaee;
}

.content-columns .col:nth-child(2) {
    border-top: 4px solid #d56ec7;
}

.content-columns .col:nth-child(3) {
    border-top: 4px solid #e37e55;
}

.content-columns .col:nth-child(4) {
    border-top: 4px solid #ebbd41;
}

.col .title {
    color: #363636;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.125;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}


.buttonNavs {
    color: #363636;
    border: none;
    background: white;
    border-radius: 100rem;
    padding: 5px .75rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    align-items: center;
}

.buttonNavs:hover {
    cursor: pointer;
    scale: 1.025;
    animation: ease-in-out 0.5s all;
}

.content-columns .item {
    background: white;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07); */
    min-height: 50px;
    border-radius: 10px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.item .filename {
    color: #000;
    font-weight: 400;
    font-size: .85rem;
    text-align: center;
    text-transform: uppercase;
}

.item .actions {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
}

.item .timestamp {
    flex: 1;
}

.item hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0 2rem;
    background: transparent;
    border-radius: 100rem;
}

.item .button {
    background: #699dff;
    color: white;
    padding: 0.15rem .75rem;
    border-radius: 100rem;
    text-align: center;
    text-decoration: none;
    border: none;
    font-size: .8rem;
    height: 100%;
}

.item .button:hover {
    cursor: pointer;
    scale: 1.025;
    animation: ease-in-out 0.5s all;
}

.nav-tabs a {
    display: inline-block;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    color: #8c939e;
    position: relative;
}

.nav-tabs a.active {
    color: #101620;
}

.nav-tabs a.active span {
    background: #d9dfea;
    color: #5887d1;
}

.nav-tabs a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #457ace;
    border-radius: 10px;
    border-radius: 10px;
}

.nav-tabs a span {
    border-radius: 10px;
    font-size: 0.8rem;
    padding: 0.25rem 0.4rem;
    font-weight: 600;
    vertical-align: middle;
    position: relative;
    top: -2px;
    background: #dfe0e2;
    color: #868d99;
}

#grouped-files ul {
    list-style: none;
    padding: 0;
}

#grouped-files li {
    margin: 6px 0;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

#grouped-files .timestamp {
    color: #777;
    font-size: 0.85rem;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-content .title {
    padding: 0 !important;
    margin: 0 !important;
    flex: 1;
}

@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .site-wrap {
        display: block;
    }

    .site-nav {
        display: none;
    }

    main {
        margin-left: 0rem;
        height: 100vh;
        border-radius: 0px;
    }

    .header-content {
        /* flex-direction: column; */
    }

    #soulaiman,
    #logs {
        display: none;
    }

    main>header {
        padding: 1rem;
        border-radius: 0%;
    }

    .report-card {
        flex-direction: column;
    }

    #reports-container {
        height: auto;
        flex: inherit;
        max-width: 100%;
    }

    #history-container {
        flex-direction: column;
    }

    .content-columns .col {
        flex: inherit;
        width: 100%;
    }
    .content-columns, #reports-container {
        padding-bottom: 8rem;
    }
}