/* General Styles */
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
    background-color: skyblue;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    text-align: right;
    z-index: 300;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
header nav ul {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 20px;
    display: block;
    border-right: #575757 1px solid;
    letter-spacing: 1px;
}

header nav ul li a:last-of-type a {
    border-right: none;
}
header nav ul li a:hover {
    background-color: #575757;
    transition: ease-in-out 0.3s;
}
#sidebar_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 250px;
    background-color: #333;
    margin: 0;
    padding: 0;
    z-index: 400;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
#sidebar_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#sidebar_menu ul li {
    border-bottom: 1px solid #575757;
}
#sidebar_menu ul li.active {
    background-color: #575757;
}
#sidebar_menu ul li.active a {
    pointer-events: none;
}
#sidebar_menu ul>li:first-of-type {
    border-top: none;
    border-bottom: none;
}
#sidebar_menu ul>li:nth-of-type(2) {
    border-top: none;

}
#sidebar_menu ul li:last-of-type {
    border-bottom: none;
}
#sidebar_menu ul>li:first-of-type a {
    padding: 5px;
}
#sidebar_menu ul>li:first-of-type a img {
    border: none;
    border-radius: 10px;
}
#sidebar_menu ul>li:first-of-type a:hover, #sidebar_menu ul>li.active a:hover {
    background-color: transparent;
    transform: none;
}
#sidebar_menu ul li a {
    text-decoration: none;
    color: #FFF;
    display: block;
    padding: 15px;
    letter-spacing: 1px;
}

#sidebar_menu ul li img {
    max-width: 100%;
    height: auto;
    display: block;
}
#sidebar_menu ul li a:hover {
    background-color: #575757;
    transition: ease-in-out 0.3s;
}
#sidebar_menu ul li a:first:hover {
    background-color: transparent;
}
#sidebar_menu p {
    position: absolute;
    bottom: 0;
    text-align: center;
    color: #bbb;
    font-size: 14px;
    padding: 10px 15px;
}
main {
    margin-left: 250px; /* Width of the sidebar */
    padding: 20px;
    margin-top: 60px; /* Height of the header */
    border-radius: 5px;
}
.dashboard-sections {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.lien-dashboard {
    display: block;
    padding: 15px 25px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border: 1px solid #007BFF;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
}
.lien-dashboard:hover {
    background-color: #0056b3;
}
.lien-dashboard svg {
    display: block;
    vertical-align: middle;
    margin-right: 8px;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    text-align: right;
    margin-left: 250px; /* Width of the sidebar */
}
footer p {
    padding: 0 20px;
}