﻿.sia-menu-wrapper {
    position: relative;
}

/* Burger button */
.burger-btn {
    position: absolute;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    top: 22px;
    left: 18px;
}
.burger-btn svg {
    width: 30px;
    height: 30px;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    /* display: none; */
    opacity: 0;
}

/* Sidebar menu */
.sidebar {
    position: fixed;
    top: 1px;
    left: 10px;
    width: 300px;
    /* height: 100vh; */
    background-color: #efefef;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    /*padding: 1rem;*/
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding-top: 90px;
    /*padding-left: 30px;*/
}

/* Close button */
.close-btn {
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    top: 40px;
    left: 20px;
}

/* Group header */
.group-toggle {
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    padding: 0.75rem 0;
    padding-left: 30px;
    padding-right: 30px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4c4c4c;
}

.group-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menuicon {
    width: 20px;
    margin-right: 5px;
}

.group-toggle .arrow {
    font-size: 2rem;
    display: flex;
    align-items: center;
}

/*.menu-icon-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.icon {
    display: inline-block;
    font-size: 1.2rem;
}*/

.submenu {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.submenu-item {
    background-color: #4c4c4c;
    border: none;
    color: white;
    text-align: left;
    /* padding: 0.75rem 1rem; */
    font-size: 1.1rem;
    cursor: pointer;
    height: 48px;
    width: 100%;
    align-items: center;
    text-decoration: none;
    padding-left: 30px;
}
.submenu-item:hover {
    background-color: #000000;
    border-bottom: 1px solid #fff;
}
.submenu-item>img {
    width: 20px;
    margin-right: 5px;
}

/*.sia_nav-menu {
    display: flex;
    gap: 1rem;
    background-color: #ffffff;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    font-family: sans-serif;
}

.sia_menu-group {
    position: relative;
}

.sia_group-header {
    background: none;
    border: none;
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

.sia_group-header:hover {
    color: #005293;
}

.sia_group-items {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
}

.menu-item {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    font-size: 0.95rem;
}

.menu-item:hover {
    background-color: #f2f2f2;
}
*/