.calendario-mesa-container {
  width: 100%;
  max-width: 320px;
  margin: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  position: relative;
  padding-top: 28px;
  padding-bottom: 12px;
}
@media (max-width: 991.98px) {
  .calendario-mesa-container {
    margin: 32px auto 0 auto;
  }
}
.wire-o {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 28px;
  width: 90%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  gap: 8px;
}
.wire-o span {
  display: block;
  width: 12px;
  height: 12px;
  background: #bbb;
  border-radius: 50%;
  margin-top: 8px;
}
.fc {
  font-size: 0.95em;
  border-radius: 12px;
  overflow: hidden;
}
.fc-toolbar-title {
  font-size: 1.1em;
  color: rgba(33, 37, 41, 0.75);
}
.fc-daygrid-day.fc-day-today {
  background: var(--azul-secondary-color, #43a0c6) !important;
  border-radius: 8px;
}
.fc-daygrid-day.fc-day-has-event {
  background: #e3f2fd;
  border-radius: 8px;
}
.fc-daygrid-day-number {
  color: var(--azul-primary-color) !important;
  font-weight: 600;
  text-decoration: none !important;
  border-bottom: none !important;
}
.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
  color: #fff !important;
  background: none !important;
  border-radius: 0;
}
.fc-daygrid-day.fc-day-today .fc-bg-event {
  background: transparent !important;
}
.fc-daygrid-day {
  cursor: pointer;
}
.fc-event-end {
  background: #c9c9c9 !important;
}
.fc-daygrid-day-event-future,
.fc-daygrid-day-event-future .fc-bg-event {
  background: var(--verde-primary-color, #28a745) !important;
}
.fc-event-future {
  background: var(--verde-primary-color, #28a745) !important;
}
/* Destaque para o dia selecionado */
.fc-daygrid-day.ag-dia-selecionado {
  box-shadow: inset 0 0 0 2px var(--azul-primary-color, #43a0c6);
  border-radius: 8px;
  z-index: 2;
}
.fc .fc-button-primary:focus, .fc .fc-button-primary:active {
    box-shadow: none !important;
} 