/* OSHITELL — calendar.css (v0.27.0) */

.oshi-cal { margin-top: 12px; }
.ocal {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 14px 14px 10px;
}
.ocal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.ocal-title {
  font-weight: 700; font-size: 15px; color: var(--ink);
  letter-spacing: .01em;
}
.ocal-nav {
  width: 32px; height: 32px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); color: var(--ink-2);
  cursor: pointer; padding: 0;
}
.ocal-nav:hover { background: var(--oshi-soft); color: var(--oshi); border-color: var(--oshi-soft); }
.ocal-nav svg { width: 18px; height: 18px; }

.ocal-dow, .ocal-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
}
.ocal-dow { gap: 2px; margin-bottom: 4px; }
.ocal-dowc {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--ink-3); padding: 4px 0;
}
.ocal-days { gap: 2px; }
.ocal-c {
  position: relative; aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; border: 0; background: transparent; border-radius: 10px;
  cursor: pointer; padding: 0; color: var(--ink);
  font-family: inherit;
}
.ocal-c-empty { cursor: default; }
.ocal-c .ocal-n { font-size: 13px; line-height: 1; }
.ocal-c:hover:not(.ocal-c-empty) { background: var(--bg); }
.ocal-c.is-today .ocal-n { color: var(--oshi); font-weight: 700; }
.ocal-c.is-sel { background: var(--oshi-soft); }
.ocal-c.is-sel .ocal-n { color: var(--oshi); font-weight: 700; }
.ocal-mks { display: flex; gap: 3px; height: 5px; align-items: center; }
.ocal-mk { width: 5px; height: 5px; border-radius: 50%; display: inline-block; }

.ocal-list { margin-top: 10px; border-top: 1px solid var(--line); padding-top: 10px; }
.ocal-empty { color: var(--ink-3); font-size: 13px; padding: 6px 2px; }
.ocal-li {
  display: flex; align-items: center; gap: 8px; padding: 6px 2px;
}
.ocal-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.ocal-li-t { font-size: 13px; color: var(--ink); font-weight: 600; flex: 1 1 auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ocal-li-ty { font-size: 11px; color: var(--ink-3); flex: 0 0 auto; }

/* compact（ホームの参加予定枠用） */
.oshi-cal[data-compact] .ocal { padding: 12px 12px 8px; }
.oshi-cal[data-compact] .ocal-title { font-size: 14px; }
.oshi-cal[data-compact] .ocal-c .ocal-n { font-size: 12px; }

/* リマインダー */
.reminders { display: flex; flex-direction: column; gap: 8px; }
.orem-empty { color: var(--ink-3); font-size: 13px; padding: 6px 2px; }
.orem-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; box-shadow: var(--shadow-sm);
  padding: 10px 12px;
}
.orem-ic {
  width: 30px; height: 30px; flex: 0 0 auto; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--oshi-soft); color: var(--oshi);
}
.orem-ic svg { width: 17px; height: 17px; }
.orem-birthday .orem-ic { background: #FF3D7718; color: #FF3D77; }
.orem-deadline .orem-ic { background: #2E97FF18; color: #2E97FF; }
.orem-milestone .orem-ic { background: #8B6CFF18; color: #8B6CFF; }
.orem-main { flex: 1 1 auto; min-width: 0; }
.orem-t { font-size: 14px; font-weight: 700; color: var(--ink);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orem-s { font-size: 12px; color: var(--ink-3); margin-top: 1px; }
.orem-when { font-size: 12px; font-weight: 700; color: var(--ink-2); flex: 0 0 auto; }
