.main-content {
  min-height: 70vh;
}
.trip-card {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}
.capacity-badge {
  font-size: 0.9rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  min-width: 700px;
}
.calendar-wrapper {
  overflow-x: auto;
}
.calendar-list {
  display: none;
}
.calendar-list-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calendar-list-day {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 10px;
}
.calendar-list-date {
  font-weight: 600;
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 4px;
}
.calendar-list-events .calendar-event {
  margin-top: 2px;
}
.calendar-day {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  min-height: 110px;
  padding: 6px;
  overflow: hidden;
}
.calendar-day .date {
  font-size: 0.85rem;
  color: #6c757d;
}
.calendar-event {
  font-size: 0.8rem;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .calendar-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .calendar-header .btn-group {
    width: 100%;
  }
  .calendar-header .btn-group .btn {
    flex: 1;
  }
  .calendar-wrapper {
    display: none;
  }
  .calendar-list {
    display: block;
  }
  .calendar-grid {
    min-width: 640px;
  }
  .calendar-day {
    min-height: 90px;
  }
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.status-green { background: #22c55e; }
.status-yellow { background: #f59e0b; }
.status-red { background: #ef4444; }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #f5f5f5;
}
.notify-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.notify-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
}

.calendar-day.has-event {
  background: #e8f4fd;
  border-color: #90caf9;
}
.calendar-header-row {
  display: contents;
}
.calendar-header-cell {
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: #495057;
  padding: 6px 0;
}
.calendar-header-cell.weekend {
  color: #dc3545;
}
.calendar-day.weekend {
  background: #fef2f2;
  border-color: #fecaca;
}
.calendar-day.weekend.has-event {
  background: #dbeafe;
  border-color: #90caf9;
}
.trip-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.trip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cap-total {
  color: #495057;
  margin-right: 8px;
}
.cap-free {
  color: #198754;
  font-weight: 500;
}
.dash-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dash-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}
.dash-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.dash-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.dash-label {
  font-size: 0.85rem;
  color: #6b7280;
}
.badge.bg-outline-secondary {
  background: transparent !important;
  color: #6b7280;
  border: 1px solid #d1d5db;
}