/* ── RIGHT CONTENT ── */
#right-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: transparent;
  overflow: hidden;
  position: relative;
}

/* ── CREAM FILL — left bleeds into SD blue, right fades to transparent ── */
#cream-fill {
  height: 24px;
  background: linear-gradient(
    to right,
    rgba(0, 116, 168, 0.50) 0%,
    rgba(247, 240, 226, 0.85) 8%,
    rgba(247, 240, 226, 0.85) 92%,
    rgba(247, 240, 226, 0.00) 100%
  );
  flex-shrink: 0;
  position: relative;
  z-index: 12;
}

/* ── ACCENT LINE — left starts transparent, fades in from SD blue side ── */
#accent-line {
  height: 8px;
  background: linear-gradient(
    90deg,
    rgba(0, 116, 168, 0.00) 0%,
    rgba(166, 61, 47, 0.55) 8%,
    rgba(212, 168, 75, 0.85) 35%,
    rgba(212, 168, 75, 0.85) 65%,
    rgba(139, 105, 20, 0.55) 92%,
    rgba(139, 105, 20, 0.00) 100%
  );
  flex-shrink: 0;
  margin: 0;
  border-radius: 0;
  position: relative;
  z-index: 3;
}

/* ── MAIN CONTENT — fades to transparent left and right ── */
#main-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(
    to right,
    rgba(0, 116, 168, 0.15) 0%,
    rgba(247, 240, 226, 0.85) 8%,
    rgba(247, 240, 226, 0.85) 92%,
    rgba(247, 240, 226, 0.00) 100%
  );
}

/* ── BOTTOM ACCENT LINE ── */
.accent-line-bottom {
  height: 4px;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    rgba(166, 61, 47, 0.60) 0%,
    #D4A84B 35%,
    #D4A84B 65%,
    rgba(139, 105, 20, 0.60) 100%
  );
}

/* ── RIGHT PANEL — fully transparent ── */
#right-panel {
  width: 220px;
  flex-shrink: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#right-content-inner {
  padding: 1.5rem 1.25rem;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow-y: auto;
  align-items: center;
}