.calendar-card {
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  overflow:hidden
}
.cal-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid #e5e7eb
}
.cal-title { font-weight:700 }
.nav-btns { display:flex; gap:8px }
.btn-cal {
  width:32px; height:32px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  background:#fff;
  display:grid; place-items:center;
  cursor:pointer
}
.btn-cal:active { transform:translateY(1px) }
.calendar { width:100%; border-collapse:collapse; table-layout:fixed; font-size:.95rem }
.calendar th,.calendar td { text-align:center }
.calendar thead th { padding:10px 0; color:#6b7280; font-weight:600 }
.calendar tbody td { height:46px; position:relative }
.day {
  width:32px; height:32px; line-height:32px;
  border-radius:10px; display:inline-block
}
.muted { color:#c0c4cb }
.today .day { outline:2px solid #9ca3af }
.event-gold .day { background:#f4c542; color:#fff; font-weight:700 }
.event-pink .day { background:#ef5da8; color:#fff; font-weight:700 }
.event-blue .day { background:#35a0ff; color:#fff; font-weight:700 }
a.event-link { color:inherit; text-decoration:none }
/* značka sa brojem događaja (ako ih je više tog dana) */
.cal-badge {
  position:absolute; top:6px; right:10px;
  min-width:18px; height:18px; line-height:18px;
  font-size:11px; font-weight:700; text-align:center;
  border-radius:9px; background:#111827; color:#fff;
}

/* popover sa listom događaja */
.cal-popover {
  position:absolute; z-index:1000;
  top:44px; left:50%; transform:translateX(-50%);
  background:#fff; border:1px solid #e5e7eb; border-radius:12px;
  box-shadow:0 12px 32px rgba(0,0,0,.15);
  min-width:240px; max-width:320px; overflow:hidden;
}
.cal-popover-header {
  padding:10px 12px; font-weight:700; border-bottom:1px solid #f0f2f5;
}
.cal-popover-list { list-style:none; margin:0; padding:8px 0; }
.cal-popover-list li { margin:0; padding:8px 12px; display:flex; gap:8px; align-items:flex-start; }
.cal-popover-list li + li { border-top:1px solid #f5f5f7; }
.cal-dot { width:10px; height:10px; border-radius:6px; margin-top:4px; }
.cal-dot.gold{ background:#f4c542; }
.cal-dot.pink{ background:#ef5da8; }
.cal-dot.blue{ background:#35a0ff; }
.cal-popover a { color:#111827; text-decoration:none; }
.cal-popover a:hover { text-decoration:underline; }

@media (max-width: 480px){
  .cal-popover { left:auto; right:8px; transform:none; }
}
/* panel sa događajima ispod kalendara */
.cal-list {
  border-top:1px solid #e5e7eb;
  padding:12px 14px;
}
.cal-list h4 { margin:0 0 8px 0; font-size:14px; color:#374151; }
.ev-item { display:flex; align-items:flex-start; gap:8px; padding:6px 0; }
.ev-tag { width:10px; height:10px; border-radius:6px; margin-top:6px; }
.ev-tag.gold{ background:#f4c542; }
.ev-tag.pink{ background:#ef5da8; }
.ev-tag.blue{ background:#35a0ff; }
.ev-text a{ color:#111827; text-decoration:none; font-weight:600; }
.ev-text a:hover{ text-decoration:underline; }
.ev-date { font-size:12px; color:#6b7280; margin-top:2px; }



