/* Move bottom-left controls up by 10px and left by 15px */
.leaflet-bottom.leaflet-left {
  bottom: 10px !important;
  left: 20px !important;
}
body {
  background: #191c22;
  color: #f1f3f6;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
a {
  color: #94a3b8;
  text-decoration: none !important;
  transition: color 0.2s;
}
a:hover {
  color: #4f8cff;
  text-decoration: none !important;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #4f8cff;
  margin-bottom: 0.5rem;
}
.section {
  background: #23272b;
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
input, textarea, select, button {
  background: #23272b;
  color: #f1f3f6;
  border: 1px solid #333843;
  border-radius: 8px;
  padding: 0.7em 1em;
  font-size: 1em;
  margin-bottom: 1em;
}
button, .btn {
  background: #4f8cff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7em 1.5em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover, .btn:hover {
  background: #23272b;
  color: #4f8cff;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2rem;
  padding-bottom: 1rem;
}

/* Enhanced Header Styles */
.header-enhanced {
  background: linear-gradient(135deg, #1a1e23 0%, #23272b 100%);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #333843;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #4f8cff;
  padding: 8px;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4f8cff;
  margin: 0;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0.25rem 0 0 0;
  font-style: italic;
}

.header-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #191c22;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #4f8cff33;
  min-width: 80px;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4f8cff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  text-align: center;
}

.header-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid #333843;
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s;
  background: #191c22;
  border: 1px solid transparent;
}

.nav-link:hover {
  color: #4f8cff;
  background: #23272b;
  border-color: #4f8cff33;
}

.nav-link.active {
  color: #4f8cff;
  background: #23272b;
  border-color: #4f8cff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }
  
  .header-stats {
    justify-content: center;
  }
  
  .stat-box {
    min-width: 70px;
    padding: 0.75rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
