/* =========================
   EVENT PAGE (THEME CONSISTENT)
========================= */

.se-pagehead{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.se-page-title{
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.6rem, 2.3vw, 2.2rem);
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.se-subtitle{
  font-weight: 900;
  color: #ffffff;
}

/* panel putih (konsisten dengan home) */
.se-panel{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* chip (fallback kalau belum ada di ui css) */
.se-chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .75rem;
  border-radius:999px;
  border:1px solid rgba(102,126,234,.25);
  color:#667eea;
  font-weight:800;
  background: rgba(102,126,234,.06);
}

/* ===== Calendar ===== */
.se-cal-week{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:10px;
}
.se-cal-weekday{
  text-align:center;
  font-size: .85rem;
  font-weight: 900;
  color: #6b7280;
  padding: 6px 0;
}

.se-cal-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.se-cal-cell{
  min-height: 92px;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.06);
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

.se-cal-cell.is-out{
  opacity: .55;
  background: rgba(255,255,255,.85);
}

.se-cal-date{
  font-weight: 900;
  color: #111827;
}

.se-cal-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding:.18rem .5rem;
  font-size:.75rem;
  font-weight: 900;
  border:1px solid rgba(102,126,234,.20);
  background: rgba(102,126,234,.08);
  color: #667eea;
}

.se-dot{
  width:7px;height:7px;border-radius:99px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.se-cal-item{
  background: rgba(102,126,234,.06) !important;
  border: 1px solid rgba(102,126,234,.16) !important;
  border-radius: 14px !important;
  padding: .55rem .65rem !important;
}
.se-cal-item:hover{
  background: rgba(102,126,234,.10) !important;
}

/* ===== List cards ===== */
.se-event-card{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.se-thumb{
  width: 92px;
  height: 92px;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.04);
  flex: 0 0 auto;
}
.se-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.se-event-title{
  font-weight: 900;
  color: #111827;
}

/* modal */
.se-modal{
  border-radius: 18px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  background: rgba(255,255,255,.98) !important;
}
.se-modal-header{
  border-bottom: 1px solid rgba(0,0,0,.06) !important;
}
.se-thumbframe{
  background: rgba(0,0,0,.04);
}

@media (max-width:768px){
  .se-cal-cell{ min-height: 78px; }
  .se-thumb{ width: 74px; height: 74px; }
}