/* ========== КАРТА – ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ========== */

/* Кружок с числом нераспределённых */
.unassigned-badge {
  display: inline-block;
  background: #e2e8f0;
  color: #1e293b;
  font-weight: 700;
  font-size: 0.75rem;
  min-width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  padding: 0 6px;
  margin-left: 4px;
}

/* Маркеры на карте – синие для "Туда", фиолетовые для "Обратно" */
.marker-there {
  background: #3b82f6;
}
.marker-back {
  background: #8b5cf6;
}

/* Панель детализации маршрута */
.route-details-panel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 340px;
  max-height: 70%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  border: 1px solid #e2e8f0;
}

.route-details-panel.collapsed .route-details-body {
  display: none;
}

.route-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  user-select: none;
}

.route-details-header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.route-details-header .toggle-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
  padding: 0 4px;
}

.route-details-header .toggle-btn:hover {
  color: #1e293b;
}

.route-details-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 16px 16px 16px;
}

.route-details-summary {
  display: flex;
  gap: 16px;
  padding: 8px 0 12px 0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 10px;
  font-weight: 500;
  color: #1e293b;
}

.route-details-step {
  display: flex;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8rem;
  color: #334155;
}

.route-details-step:last-child {
  border-bottom: none;
}

.route-details-step .step-icon {
  width: 20px;
  text-align: center;
  color: #64748b;
  flex-shrink: 0;
}

.route-details-step .step-text {
  flex: 1;
  word-break: break-word;
}

.route-details-step .step-distance {
  color: #94a3b8;
  white-space: nowrap;
  font-size: 0.75rem;
  margin-left: 8px;
}

/* Адаптив для панели */
@media (max-width: 768px) {
  .route-details-panel {
    width: 280px;
    right: 10px;
    top: 10px;
    max-height: 60%;
  }
}
/* Исправление для маркеров на карте – делаем их круглыми */
.leaflet-marker-icon {
  border-radius: 50% !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.leaflet-marker-icon div {
  border-radius: 50% !important;
  border: 2px solid white !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}