.header__container {
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(60, 63, 63, 0.1);
}

.sidebar {
    background: linear-gradient(180deg, #323636 0%, #292d2d 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 8px 0 24px rgba(20, 24, 24, 0.2) !important;
}

.sidebar__dashbord {
    gap: 8px;
}

.sidebar__dashbord--btns {
    align-items: center;
    gap: 4px;
    margin: 0;
}

.sidebar__notifications-btn {
    position: relative;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.07);
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sidebar__notifications-btn:hover,
.sidebar__notifications-btn:focus-visible {
    background-color: rgba(93, 194, 170, 0.18);
    color: #5dc2aa;
}

.sidebar__notifications-btn:focus-visible {
    outline: 2px solid #5dc2aa;
    outline-offset: 2px;
}

.sidebar__notification-count {
    position: absolute;
    top: -6px;
    right: -7px;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 4px;
    border: 2px solid #303434;
    border-radius: 9px;
    background-color: #5dc2aa;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.sidebar__profile {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 12px;
    margin: -6px 0 -6px -6px;
    padding: 6px;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar__profile:hover,
.sidebar__profile:focus-visible {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(93, 194, 170, 0.2);
}

.sidebar__profile:focus-visible {
    outline: 2px solid #5dc2aa;
    outline-offset: 2px;
}

.sidebar__profile .sidebar__user {
    display: grid;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    place-items: center;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 5px 14px rgba(85, 180, 158, 0.22);
    color: #55b49e;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.sidebar__profile:hover .sidebar__user,
.sidebar__profile:focus-visible .sidebar__user {
    background-color: #f3fbf9;
    box-shadow: 0 7px 18px rgba(85, 180, 158, 0.3);
    transform: scale(1.04);
}

.sidebar__profile-info {
    min-width: 0;
    align-items: flex-start !important;
    justify-content: center !important;
    line-height: 1.2;
}

.sidebar__profile-login,
.sidebar__profile-name {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar__profile-login {
    font-weight: 500;
}

.sidebar__profile-name {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
}
