.fc-lite{
  font-family: 'Montserrat','Segoe UI',Arial,sans-serif;
  color:#1f2933;
}
.fc-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:0.5rem;
  gap:0.5rem;
}
.fc-toolbar-start,.fc-toolbar-end{
  display:flex;
  gap:0.25rem;
  align-items:center;
}
.fc-toolbar-title{
  font-weight:600;
}
.fc-btn{
  border:1px solid #d1d5db;
  background:#f8fafc;
  padding:0.25rem 0.5rem;
  border-radius:4px;
  cursor:pointer;
}
.fc-btn:disabled{
  opacity:0.6;
  cursor:default;
}
.fc-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:4px;
}
.fc-day{
  border:1px solid #e5e7eb;
  min-height:90px;
  padding:4px;
  background:#fff;
  position:relative;
}
.fc-day-header{
  background:#f3f4f6;
  font-weight:600;
  text-align:center;
  min-height:auto;
}
.fc-day-number{
  font-size:0.9rem;
  font-weight:600;
  color:#111827;
}
.fc-day-out{
  background:#f9fafb;
  color:#9ca3af;
}
.fc-event{
  margin-top:4px;
  padding:3px 4px;
  border-radius:4px;
  color:#fff;
  font-size:0.85rem;
  cursor:pointer;
  border:1px solid transparent;
  line-height:1.2;
}
.fc-event:hover{
  filter:brightness(1.05);
}
