/* --- SIDEBAR COMPONENT --- */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: var(--sidebar-width);
    border-right: 1px dashed var(--border-color);
    background-color: var(--bg-color);
    z-index: 100;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}

/* MENU ICON (Top) */
.menu-icon {
    /* CHANGED: Increased from 24px to 50px for longer lines */
    width: 35px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-icon .line {
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transition: transform 0.3s ease;
}

/* Active State for Menu Icon (X shape) */
.menu-icon.active .top {
    transform: translateY(3.5px) rotate(45deg);
}
.menu-icon.active .bottom {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* NAME (Middle) */
.vertical-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    
    /* VERTICAL ORIENTATION */
    writing-mode: vertical-rl;
    
    /* CHANGED: Removed rotation. Default vertical-rl puts the bottom of letters to the LEFT. */
    transform: none; 
}

/* DATE (Bottom) */
.sidebar-date {
    font-family: 'Space Mono', monospace; 
    font-size: 10px;
    color: var(--text-color);
    opacity: 0.7;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    gap: 4px; 
    line-height: 1;
}