.tic-concesion-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.tic-concesion-list {
  flex: 1 1 320px;
  max-width: 420px;
}

.tic-concesion-map {
  flex: 2 1 480px;
  min-height: 400px;
}

#concesion-map {
  width: 100%;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tic-map-empty {
  width: 100%;
  min-height: 400px;
  border-radius: 12px;
  background: #f5f7f9;
  border: 2px dashed #cfd8df;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #556068;
  font-size: 0.95rem;
}

.tic-line-item {
  border: 1px solid #dfe6eb;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.tic-line-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #003349;
}

.tic-line-meta {
  font-size: 0.9rem;
  color: #4d5a64;
}

.tic-line-link {
  text-decoration: none;
  display: block;
}

.tic-line-item--disabled {
  opacity: 0.6;
}

.tic-line-item--active {
  border-color: #00607A;
  box-shadow: 0 4px 12px rgba(0, 96, 122, 0.15);
}

.tic-line-item--loading {
  position: relative;
  pointer-events: none;
}

.tic-line-item--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  border: 2px solid #dfe6eb;
  border-top-color: #00607A;
  border-radius: 50%;
  animation: tic-spin 0.7s linear infinite;
}

@keyframes tic-spin {
  to { transform: rotate(360deg); }
}

.tic-line-warning {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: #9c4221;
}

.tic-concesion-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem !important;
  background: #e6f3f6;
  border-left: 3px solid #00607A;
  border-radius: 0 6px 6px 0;
  font-size: 0.9rem;
  color: #003349;
  /* margin-bottom: 0.5rem; */
}

.tic-concesion-hint-icon {
  font-size: 1.1rem;
}

