/* --- 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: #ffffff;
    border-right: 1px solid #000000;
    z-index: 10;
}

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

.sidebar a:hover {
    opacity: 0.5;
}

.sidebar a svg {
    width: 24px;
    height: 24px;
    stroke: black;
}

body {
    margin: 0;
    height: 100vh;
    position: relative;
    overflow: auto;
}

.spawned-img {
    position: absolute;
    width: 150px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* page title (keep it visible to the right of the fixed sidebar) */
.page-title {
    margin-left: 100px;
    /* account for sidebar width + gap */
    padding: 24px 16px 8px;
    font-size: 28px;
    color: #000000;
    position: relative;
    z-index: 5;
}