/* Sidebar - no styling, blank slate */

.sidebar {
    max-width: 160px;
    margin-left: 100px;
    font-family: 'DotGothic16', sans-serif;
    background: rgba(112, 108, 108, 0.1);
    border: .1px solid rgb(208, 226, 184);
    padding: 16px;
    position: relative;
    box-shadow:
        0 0 50px rgba(255, 140, 90, 0.15),
        inset 0 0 0 1px rgba(255, 200, 170, 0.12);
}

.sidebar-corner {
    position: absolute;
    width: 76px;
    height: auto;
    pointer-events: none;
    /* optional: clicks pass through */
}

.corner-top-right {
    top: -18px;
    right: -25px;
    rotate: 30deg;
}

.corner-bottom-left {
    bottom: -20px;
    left: -25px;
    rotate: -5deg;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-family: 'Jacquard 12', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: rgb(208, 226, 184);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    border: .1px solid rgb(208, 226, 184);
    background: #736c86;
    box-shadow: inset 13px 0px 6px -10px rgb(66 66 66 / 20%), inset -13px 0px 6px -10px rgb(66 66 66 / 56%), inset 0px 13px 6px -10px #9d9d9d, inset 0px -13px 6px -10px rgb(66 66 66 / 38%);
    opacity: 0.8;
}

.sidebar-nav a {
    padding: 8px;
    text-decoration: none;
    border: none;
    color: rgb(208, 226, 184);
}

.sidebar-nav a+a {
    border-top: .1px solid rgb(208, 226, 184);
}

.img-divider {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}


.flipped-divider {
    transform: scaleX(-1);
}

.welcome-message {
    color: rgb(208, 226, 184);
    font-size: 10px;
    text-align: center;
}

.welcome-message p {
    color: rgb(208, 226, 184);
    font-size: 10px;
    text-align: center;
    margin-bottom: 10px;
}

/* Weekly Obsession Board */
.weekly-obsession {
    margin-bottom: 2rem;
}

.obsession-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.obsession-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.obsession-item strong {
    display: block;
}