/* ===========================================
   UNIFIED DASHBOARD - SPA Style
   Mobile-First, Modern, Smooth Transitions
   =========================================== */

/* Base Dashboard Wrapper */
.unified-dashboard {
  min-height: 100vh;
  background: linear-gradient(180deg, #1a1f2e 0%, #0d1117 100%);
  padding-bottom: 80px; /* Space for bottom nav on mobile */
}

@media (min-width: 768px) {
  .unified-dashboard {
    padding-bottom: 0;
  }
}

/* Dashboard Header */
.dashboard-top-header {
  background: linear-gradient(135deg, #005F60 0%, #003d3e 100%);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-welcome h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.dashboard-summary-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .dashboard-top-header {
    padding: 32px 0;
  }

  .dashboard-welcome h1 {
    font-size: 1.75rem;
  }
}

/* Desktop Tab Navigation */
.dashboard-tabs-desktop {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .dashboard-tabs-desktop {
    display: block;
  }
}

.dashboard-tab-nav {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.dashboard-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dashboard-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-tab.active {
  background: rgba(0, 95, 96, 0.3);
  color: #fff;
}

.dashboard-tab.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #00a3a6;
  border-radius: 3px;
}

.dashboard-tab i {
  font-size: 1rem;
}

.tab-badge {
  background: #dc3545;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

/* Tab Content */
.dashboard-content {
  padding: 24px 0;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tab Panel Header */
.tab-panel-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .tab-panel-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.tab-panel-title h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.tab-panel-title p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-size: 0.85rem;
}

/* Dashboard Buttons */
.btn-dashboard-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00a3a6 0%, #008486 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 163, 166, 0.3);
}

.btn-dashboard-primary:hover {
  background: linear-gradient(135deg, #00b4b8 0%, #009597 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 166, 0.4);
}

.btn-dashboard-legacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-dashboard-legacy:hover {
  background: linear-gradient(135deg, #7c7ff5 0%, #635cf5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Search/Filter Bar */
.dashboard-search-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .dashboard-search-bar {
    flex-direction: row;
  }
}

.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0 16px;
  transition: all 0.2s ease;
}

.search-input-wrapper:focus-within {
  border-color: #00a3a6;
  background: rgba(255, 255, 255, 0.08);
}

.search-input-wrapper i {
  color: rgba(255, 255, 255, 0.4);
  margin-right: 10px;
}

.search-input-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 0;
  font-size: 0.9rem;
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.dashboard-sort-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  padding: 12px 16px;
  font-size: 0.9rem;
  min-width: 180px;
  cursor: pointer;
}

.dashboard-sort-select option {
  background: #1a1f2e;
}

/* Dashboard List Items */
.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Memorial Cards */
.memorial-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.memorial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.memorial-card-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #005F60, #003d3e);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.memorial-card-photo i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
}

.memorial-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.memorial-card-info {
  flex: 1;
  min-width: 0;
}

.memorial-card-name {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.memorial-card-dates {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0 0 6px 0;
}

.memorial-card-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.memorial-card-status.published {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.memorial-card-status.draft {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
}

.memorial-card-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.memorial-card-actions .btn {
  padding: 8px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Tribute Cards */
.tribute-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.tribute-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tribute-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tribute-memorial-link a {
  color: #00a3a6;
  font-weight: 600;
  text-decoration: none;
}

.tribute-memorial-link a:hover {
  text-decoration: underline;
}

.tribute-status-badge {
  background: rgba(234, 179, 8, 0.2);
  color: #eab308;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tribute-card-message {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.tribute-card-footer {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.tribute-card-actions {
  display: flex;
  gap: 8px;
}

.tribute-card-actions .btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Sub Tabs (Tributes) */
.tributes-sub-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sub-tab:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.sub-tab.active {
  background: #00a3a6;
  border-color: #00a3a6;
  color: #fff;
}

.sub-tab-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.sub-tab.active .sub-tab-count {
  background: rgba(0, 0, 0, 0.2);
}

/* Empty States */
.dashboard-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-top: 20px;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 163, 166, 0.2), rgba(0, 163, 166, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.empty-state-icon i {
  font-size: 2rem;
  color: #00a3a6;
}

.empty-state-icon.legacy-icon {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
}

.empty-state-icon.legacy-icon i {
  color: #6366f1;
}

.dashboard-empty-state h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.dashboard-empty-state p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0 0 24px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.empty-state-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.empty-state-features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.empty-state-features .feature-item i {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}

.empty-state-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 163, 166, 0.1);
  color: #00a3a6;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
}

/* Legacy Section Styles */
.legacy-profile-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.02));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.legacy-profile-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.legacy-profile-photo i {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.legacy-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-profile-info {
  flex: 1;
  min-width: 150px;
}

.legacy-profile-info h3 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}

.legacy-profile-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

/* Legacy Actions Grid */
.legacy-actions-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .legacy-actions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.legacy-action-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}

.legacy-action-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.action-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-card-icon i {
  font-size: 1.25rem;
}

.action-card-icon.story-icon {
  background: rgba(59, 130, 246, 0.15);
}

.action-card-icon.story-icon i {
  color: #3b82f6;
}

.action-card-icon.messages-icon {
  background: rgba(234, 179, 8, 0.15);
}

.action-card-icon.messages-icon i {
  color: #eab308;
}

.action-card-icon.executor-icon {
  background: rgba(168, 85, 247, 0.15);
}

.action-card-icon.executor-icon i {
  color: #a855f7;
}

.action-card-content h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 4px 0;
}

.action-card-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin: 0;
}

.action-status,
.action-count {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-top: 8px;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.btn-action:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Legacy Privacy Note */
.legacy-privacy-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.legacy-privacy-note i {
  color: #a855f7;
  font-size: 1rem;
}

/* Activity Feed */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.activity-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 163, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon i {
  color: #00a3a6;
  font-size: 0.9rem;
}

.activity-icon.view i { color: #3b82f6; }
.activity-icon.view { background: rgba(59, 130, 246, 0.15); }
.activity-icon.tribute i { color: #22c55e; }
.activity-icon.tribute { background: rgba(34, 197, 94, 0.15); }
.activity-icon.edit i { color: #eab308; }
.activity-icon.edit { background: rgba(234, 179, 8, 0.15); }

.activity-content {
  flex: 1;
}

.activity-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0 0 4px 0;
}

.activity-time {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

/* Loading State */
.dashboard-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.5);
}

.dashboard-loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #00a3a6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dashboard-loading p {
  font-size: 0.9rem;
  margin: 0;
}

/* ==========================================
   MOBILE BOTTOM NAVIGATION
   ========================================== */
.dashboard-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  padding-bottom: calc(8px + env(safe-area-inset-bottom, 0));
  z-index: 1000;
}

@media (min-width: 768px) {
  .dashboard-bottom-nav {
    display: none;
  }
}

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.bottom-nav-item i {
  font-size: 1.25rem;
  transition: all 0.2s ease;
}

.bottom-nav-item span {
  transition: all 0.2s ease;
}

.bottom-nav-item:active {
  transform: scale(0.95);
}

.bottom-nav-item.active {
  color: #00a3a6;
}

.bottom-nav-item.active i {
  transform: scale(1.1);
}

/* Create Button (Center) */
.bottom-nav-item.create-btn {
  position: relative;
}

.bottom-nav-item.create-btn i {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #00a3a6 0%, #008486 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-top: -16px;
  box-shadow: 0 4px 15px rgba(0, 163, 166, 0.4);
}

.bottom-nav-item.create-btn span {
  color: #00a3a6;
  font-weight: 600;
}

/* Nav Badge (for notifications) */
.nav-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 20px);
  background: #dc3545;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 8px;
  min-width: 16px;
  text-align: center;
}

/* ==========================================
   TRIBUTES LIST
   ========================================== */
.tributes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 575px) {
  .tab-panel-header {
    text-align: center;
  }

  .btn-dashboard-primary {
    width: 100%;
    justify-content: center;
  }

  .memorial-card {
    flex-wrap: wrap;
  }

  .memorial-card-actions {
    width: 100%;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .memorial-card-actions .btn {
    flex: 1;
  }

  .tribute-card-actions {
    flex-direction: column;
  }

  .tribute-card-actions .btn {
    width: 100%;
  }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
  .dashboard-tab.active,
  .sub-tab.active {
    border: 2px solid currentColor;
  }

  .memorial-card,
  .tribute-card,
  .legacy-action-card {
    border-width: 2px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .tab-panel,
  .memorial-card,
  .tribute-card,
  .legacy-action-card,
  .bottom-nav-item,
  .dashboard-tab {
    transition: none;
    animation: none;
  }
}

/* ==========================================
   COLLAPSIBLE MAP SECTION
   ========================================== */
.memorials-map-section {
  margin-bottom: 20px;
}

.map-toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 163, 166, 0.1);
  border: 1px solid rgba(0, 163, 166, 0.3);
  border-radius: 10px;
  color: #00a3a6;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-toggle-btn:hover {
  background: rgba(0, 163, 166, 0.15);
  border-color: rgba(0, 163, 166, 0.5);
}

.map-toggle-btn.active {
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

.map-toggle-btn .toggle-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.map-toggle-btn.active .toggle-icon {
  transform: rotate(180deg);
}

.map-container-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 163, 166, 0.3);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 16px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.memorials-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .memorials-map {
    height: 350px;
  }
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.map-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.map-legend i {
  font-size: 0.5rem;
}

.map-no-locations {
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.map-no-locations i {
  font-size: 2rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.3);
}
