@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100vh;
    padding: 4px;
    background: #eeeeee;
    display: flex;
}

#sidebar {
    height: 100%;
    min-width: 60px;
    background: #1d1d1d;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sidebar .logo {
    width: 25px;
    margin-top: 12px;
}

#sidebar .menu {
    margin-top: -100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

#sidebar .menu a {
    position: relative;
    color: #F3F3F3;
    border: 1px solid transparent;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#sidebar .menu a:hover,
#sidebar .menu a.active {
    /* background: linear-gradient(to bottom right, #5e5e5e, #383838); */
    background: #4b4b4b;
    border: 1px solid #505050;
}

#sidebar .menu a span {
    font-size: 18px;
}

#sidebar .menu a .tag{
    position: absolute;
    background: #1d1d1d;
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 12px;
    left: 55px;
    position: absolute;
    display: none;
    box-shadow: 0 3px 10px 0 #c4c4c4;
}

#sidebar .menu a:hover .tag {
    display: block;
}

#navbar {
    min-width: 250px;
    height: 100%;
    padding: 8px;
}

#navbar .title-nav {
    font-size: 12px;
    font-weight: 500;
    padding: 16px;
}

#navbar .subtitle-nav {
    width: 100%;
    padding-left: 16px;
    font-size: 11px;
    font-weight: 500;
    color: #9e9e9e;
}

#navbar .menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

#navbar .menu-nav a {
    width: 100%;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    color: #1d1d1d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease-out;
}

#navbar .menu-nav a:hover,
#navbar .menu-nav a.active {
    background: #dfdfdf;
    color: #1d1d1d !important;
}

#navbar .menu-nav a.bis {
    color: #9e9e9e;
}

#navbar .menu-nav a span {
    font-size: 18px;
}

#navbar .menu-nav a .left {
    display: flex;
    align-items: center;
    gap: 8px;
}

#navbar .menu-nav a .right span{
    font-size: 12px;
    color: #9e9e9e;
}

#navbar .separateur {
    width: 200px;
    margin-top: 16px;
    margin-bottom: 8px;
    border: 1px solid #f5f5f5;
    box-shadow: 0 -1px 1px 0 #e0e0e0;
}

#container {
    width: 100%;
    height: 100%;
    background: #fcfcfc;
    border-radius: 16px;
    box-shadow: 0 0 10px 3px #e6e6e6;
}