* {
    margin: 0px;
    padding: 0px;
}

body {
    overflow: hidden;
}

:root {
    --nav-bar-height: 50px;
}

.h-100vh {
    height: 100vh;
}

.bg-lightgrey {
    background-color: #303030 !important;
}

.text-grey {
    color: #afafaf !important;
}

.menu-container {
    height: calc(100vh - var(--nav-bar-height));
    background-color: black !important;
}

.menu-list {
    height: calc(100vh - 90px);
    overflow-y: auto;
    padding-bottom:20px;
}

.input-group {
    border: 1px solid #303030;
    border-radius: 8px;
    padding: 3px;
}

.search-input {
    border: none !important;
    background-color: transparent !important;
    color: white !important;
}

.left-menu-item {
    text-align: left;
    padding: 6px 12px;
    margin: 2px 12px;
    cursor: pointer;
}
.selected-left-menu {
    background-color: #303030;
    border-radius: 8px;
}
.menu-item {
    text-decoration: none;
    color: white !important;
}

.left-menu-item:hover {
    background-color: #303030;
    border-radius: 8px;
}

.search-input::placeholder {
    color: lightgray !important;
}

.search-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.selected-menu {
    background-color: #303030;
    border-radius: 8px;
}

.login-btn {
    color: white;
    background-color: #303030 !important;
    font-size: 14px;
    font-weight: 500
}

    .login-btn:hover {
        color: white;
    }

.sign-btn {    
    font-size: 14px;
    font-weight: 500;
    background-color: transparent;
    border:1px solid white;
    color:white;
}

    .sign-btn:hover {
        color: black;
        background-color: whitesmoke;
    }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #888;
    }

.overflow-y-auto {
    overflow-y: auto;
}

.doc-container {
    height: calc(100vh - var(--nav-bar-height));
    overflow-y: auto;
    overflow-x: hidden;
}
