/* SMT Store Network Module CSS - Saif Zekri */

.sz-stores-container {
  margin-top: 15px;
  margin-bottom: 30px;
}

.sz-stores-sidebar {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

.sz-stores-sidebar::-webkit-scrollbar {
  width: 6px;
}

.sz-stores-sidebar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.sz-store-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none !important;
  color: #334155 !important;
}

.sz-store-card:hover, .sz-store-card.active-store {
  border-color: #2563eb;
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.sz-store-card .sz-store-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}

.sz-store-card .sz-store-info {
  flex-grow: 1;
}

.sz-store-card .sz-store-title {
  font-weight: 700;
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 2px;
  display: block;
}

.sz-store-card .sz-store-subtitle {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.sz-external-link {
  color: #2563eb;
  margin-left: 4px;
  text-decoration: none !important;
  font-style: normal;
  display: inline-block;
  transition: transform 0.15s ease, color 0.15s ease;
}

.sz-external-link:hover {
  color: #1d4ed8;
  transform: scale(1.2);
}

.sz-store-card .sz-store-address {
  font-size: 13px;
  color: #475569;
  line-height: 1.4;
}

.sz-store-map-wrapper {
  height: 600px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#sz-stores-leaflet-map {
  height: 100%;
  width: 100%;
}

/* Leaflet Popup Styling */
.sz-leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.sz-popup-content {
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
}

.sz-popup-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 4px;
}

.sz-popup-detail {
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sz-popup-detail a {
  color: #2563eb;
  text-decoration: none;
}

.sz-popup-detail a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .sz-stores-sidebar {
    max-height: 350px;
    margin-bottom: 15px;
  }
  .sz-store-map-wrapper {
    height: 400px;
  }
}
