.sidebar {
    background: white;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    border: 1px solid #e5e7eb;
    width: 250px;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
    box-sizing: border-box;
    overflow: auto;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    position: sticky;
    top: 0;
}
.header-logo img {
    width: 150px;
    height: 40px;
    object-fit: contain;
}
.header-logo-img {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.header-logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background-color: #b79845;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
}
.header-logo-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}
.header-plan-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}
.menu-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.menu-item {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: background-color 0.2s;
}
.menu-item:hover {
    background-color: #f3f4f6;
}
.menu-item-content {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.menu-item-text {
    padding-top: 2px;
    font-weight: 500;
}
.menu-shortcut {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
}
.shared-section {
    border-top: 1px solid #e5e7ebb1;
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.shared-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
}
.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #9ca3af;
}
.add-icon {
    font-size: 1.125rem;
    font-weight: 300;
    color: #9ca3af;
}
.active-item {
    background-color: #b79845;
}
.menu-item:hover.active-item {
    background-color: #b79845;
}
.active-item i {
    color: #f3f4f6;
}
.active-item .menu-item-text {
    color: #f3f4f6;
}
.projects-section {
    flex-grow: 1;
    border-top: 1px solid #e5e7ebb1;
    padding-top: 1rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-color {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
}

.projects-section .menu-item:nth-of-type(1) .project-color {background: #93c5fd;}
.projects-section .menu-item:nth-of-type(2) .project-color {background: #d8b4fe;}
.projects-section .menu-item:nth-of-type(3) .project-color {background: #fca5a5;}
.projects-section .menu-item:nth-of-type(4) .project-color {background: #fdba74;}
.projects-section .menu-item:nth-of-type(5) .project-color {background: #fcd34d;}
.projects-section .menu-item:nth-of-type(6) .project-color {background: #86efac;}
.projects-section .menu-item:nth-of-type(7) .project-color {background: #5eead4;}
.projects-section .menu-item:nth-of-type(8) .project-color {background: #67e8f9;}
.projects-section .menu-item:nth-of-type(9) .project-color {background: #a5b4fc;}
.projects-section .menu-item:nth-of-type(10) .project-color {background: #f9a8d4;}
.projects-section .menu-item:nth-of-type(11) .project-color {background: #bbf7d0;}
.projects-section .menu-item:nth-of-type(12) .project-color {background: #fbcfe8;}
.projects-section .menu-item:nth-of-type(13) .project-color {background: #fde68a;}
.projects-section .menu-item:nth-of-type(14) .project-color {background: #c7d2fe;}
.projects-section .menu-item:nth-of-type(15) .project-color {background: #fecaca;}


.add-project-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #374151;
    transition: background-color 0.2s;
}
.add-project-item:hover {
    background-color: #f3f4f6;
}
.user-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    background: white;
    position: sticky;
    bottom: 0;
	margin-top: auto;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.user-avatar {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #b79845;
    color:#fff;
    padding-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 12px;
    pointer-events: none;
    user-select: none;
}

.user-avatar::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: green;
    border-radius: 50px;
    outline: 2px solid white;
}

.user-details {
    display: flex;
    flex-direction: column;
}
.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}
.user-email {
    font-size: 0.75rem;
    color: #6b7280;
}
.user-actions a {
    display: flex;
    align-items: center;
    color: rgb(211, 28, 28);
    background: rgba(245, 190, 190, 0.42);
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.5s;
}
.user-actions a:hover {
    background: rgb(220, 38, 38);
    color: white;
}

