@import url('box.css');

.navigator-container {
    left: 0;
    width: 244px;
    box-shadow: 2px 0 8px var(--border-shadow-color);
    border-right: 1px solid var(--border-color);
    transform: translateX(-100%);
    transition: transform 0.15s ease-out;
}

.navigator-container.navigator-visible {
    transform: translateX(0);
}

.navigator-close-button {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    margin-left: auto;
}

.navigator-close-button:hover {
    background: var(--hover-color);
    color: var(--selected-text-color);
}

.navigator-content-container {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.navigator-upper-links {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px;
    background: var(--1-color);
    display: flex;
    flex-direction: column;
}

.navigator-bottom-links {
    flex-shrink: 0;
    padding: 16px;
    background: var(--1-color);
    display: flex;
    flex-direction: column;
}

.navigator-user-info {
    display: flex;
    align-items: center;
    margin: 15px;
    margin-bottom: 10px;
    gap: 12px;
}

.navigator-user-image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--2-color);
}

.navigator-user-text-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.navigator-user-name {
    font-weight: bold;
    font-size: var(--fontsize-huge);
    line-height: 1.2;
}

.navigator-user-email {
    font-size: var(--fontsize-small);
    line-height: 1.2;
}

