/* --- SIDEBAR --- */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 8px;
    background: #fff;
    border-right: 1px solid #ddd;
    z-index: 10;
}

.sidebar a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    letter-spacing: 0.5px;
    margin: 10px 0;
    transition: opacity 0.2s ease;
}

.sidebar a:hover {
    opacity: 0.5;
}

/* actual content   */
.container {
    margin-left: 80px;
    padding: 40px;
}

/* ensure SVG arrows in the sidebar are visible and sized (shared) */
.sidebar a {
    padding: 6px;
}

.sidebar a svg {
    width: 20px;
    height: 20px;
    display: block;
}

.sidebar a svg path {
    stroke: currentColor;
}