.calendar-empty {
  padding: 20px;
  text-align: center;
  color: #9ca3af;
}

.calendar-container {
  padding: 16px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-header h2 {
  margin: 0;
  font-size: 20px;
  color: #e9edf1;
}

.calendar-time-selector {
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1b1e;
  color: #e9edf1;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  position: relative;
}

.calendar-group {
  margin-bottom: 24px;
}

.calendar-group-title {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.calendar-event-card {
  background: #0e0f12;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
}

.calendar-event-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: #e9edf1;
}

.calendar-event-customer {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.calendar-event-time {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.calendar-event-actions {
  display: flex;
  gap: 8px;
}

.calendar-btn {
  flex: 1;
  padding: 4px 6px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.calendar-btn:hover {
  opacity: 0.8;
}

.calendar-btn-crm {
  background: #374151;
  color: #e9edf1;
}

.calendar-btn-chat {
  background: #9333ea;
  color: #fff;
}

.calendar-gold-label {
  background: linear-gradient(90deg, rgba(255,215,130,.8) 0%, rgba(181,133,0,1) 22%, #ffe7a8 50%, rgba(181,133,0,1) 78%, rgba(255,215,130,.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: pcx-sheen 8.4s linear infinite;
}

@media (max-width: 768px) {
  #calendar-events {
    margin: 0 0 70px 0 !important;
    width: 96% !important;
    padding: 4px 48px 4px 48px !important;
  }
  .calendar-container {
    padding: 4px;
  }
  #calendar-columns {
    flex-direction: column-reverse !important;
  }
  #calendar-columns > div {
    width: 100% !important;
  }
  .calendar-event-card,
  .calendar-group-title,
  .calendar-header {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
