/* Base Styles */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --background: #000000;
  --foreground: #ffffff;
  --muted: #a1a1aa;
  --muted-foreground: #d4d4d8;
  --card: rgba(24, 24, 27, 0.3);
  --card-border: #27272a;
  --accent: #3f3f46;
  --accent-foreground: #f8fafc;
  --radius: 0.5rem;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted);
}

/* Presentation Container */
#presentation {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Slide Styles */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.slide-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.logo {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}

.slide-content.centered {
  align-items: center;
  text-align: center;
}

.slide-footer {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 1rem;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-size: 1rem;
  color: var(--foreground);
}

.btn-next {
  background-color: var(--primary);
  color: var(--background);
}

.btn-next:hover {
  background-color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
}

.btn .icon {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition);
}

.btn-next .icon {
  margin-left: 0.5rem;
}

.btn-prev .icon {
  margin-right: 0.5rem;
}

.btn-next:hover .icon {
  transform: translateX(0.25rem);
}

.btn-prev:hover .icon {
  transform: translateX(-0.25rem);
}

/* Content Styles */
.title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted-foreground);
  max-width: 48rem;
}

.description {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
}

.description p {
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted);
}

/* Framework List */
.framework-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.framework-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.framework-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.framework-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.framework-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.framework-description {
  color: var(--muted);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  height: 100%;
}

.step-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.step-icon svg {
  width: 3rem;
  height: 3rem;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--muted);
}

/* Florida Map and Stats */
.florida-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.florida-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

#map-container {
  width: 100%;
  height: 300px;
  background-color: rgba(24, 24, 27, 0.3);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

#map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#county-info {
  background-color: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(4px);
  padding: 1.25rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 400px;
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

#county-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

#county-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
  transition: opacity 0.3s ease;
}

#county-stats {
  transition: opacity 0.3s ease;
}

.county-stat {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.25rem;
  background-color: rgba(24, 24, 27, 0.4);
  transition: background-color 0.3s ease;
}

.county-stat:hover {
  background-color: rgba(24, 24, 27, 0.6);
}

.county-value {
  font-weight: 600;
  color: var(--primary);
}

.florida-stats {
  width: 100%;
}

.stats-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.stats-tab {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.875rem;
}

.stats-tab:hover {
  background-color: var(--accent);
}

.stats-tab.active {
  background-color: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}

.stats-content {
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  display: none;
}

.stats-content.active {
  display: block;
}

.stats-content h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.stats-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  align-items: center;
  gap: 1rem;
}

.stat-bar {
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  border-radius: 0.5rem;
  width: 0;
  transition: width 1.5s ease;
}

/* Responsibilities Grid */
.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.responsibility-card {
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.responsibility-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.responsibility-icon {
  color: var(--primary);
}

.responsibility-icon svg {
  width: 2rem;
  height: 2rem;
}

.responsibility-title {
  font-size: 1.125rem;
  font-weight: 600;
}

.responsibility-list {
  list-style: none;
  margin-left: 1.5rem;
}

.responsibility-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.responsibility-list li::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
  flex-shrink: 0;
}

/* Phases Timeline */
.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.phase-item {
  position: relative;
}

.phase-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.phase-header {
  display: flex;
  flex-direction: column;
}

.phase-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.phase-timeline {
  color: var(--primary);
  font-weight: 500;
}

.phase-description {
  color: var(--muted-foreground);
}

.phase-progress {
  height: 0.25rem;
  width: 0;
  border-radius: 0.125rem;
  transition: width 1s ease;
}

.blue-gradient {
  background: linear-gradient(to right, #2563eb, #38bdf8);
}

.cyan-gradient {
  background: linear-gradient(to right, #0891b2, #22d3ee);
}

.teal-gradient {
  background: linear-gradient(to right, #0d9488, #2dd4bf);
}

.emerald-gradient {
  background: linear-gradient(to right, #059669, #34d399);
}

/* Equity Grid */
.equity-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.equity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.equity-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.equity-icon svg {
  width: 3rem;
  height: 3rem;
}

.equity-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.equity-description {
  color: var(--muted-foreground);
}

/* Financial Projections */
.financial-projections {
  background: linear-gradient(to right, #2563eb, #0891b2);
  padding: 0.125rem;
  border-radius: var(--radius);
  margin-top: 2rem;
}

.financial-projections > * {
  background-color: rgba(24, 24, 27, 0.8);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: var(--radius);
}

.projections-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.projections-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.projection-item {
  text-align: center;
}

.projection-label {
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.projection-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

.projection-description {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Business Plan Section */
.business-plan-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem 0;
  z-index: 5;
}

.plan-tab {
  background-color: transparent;
  color: var(--foreground);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
}

.plan-tab:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.plan-tab.active {
  background-color: var(--primary);
  color: var(--background);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(14, 165, 233, 0.3);
}

.business-plan-content {
  background-color: var(--card);
  backdrop-filter: blur(4px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--card);
}

.business-plan-content::-webkit-scrollbar {
  width: 8px;
}

.business-plan-content::-webkit-scrollbar-track {
  background: var(--card);
  border-radius: var(--radius);
}

.business-plan-content::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: var(--radius);
}

.plan-section {
  display: none;
  animation: fadeIn 0.5s ease;
}

.plan-section.active {
  display: block;
}

.plan-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.plan-subsection-title {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--muted-foreground);
}

.plan-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-item {
  background-color: rgba(24, 24, 27, 0.4);
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plan-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.plan-list {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.plan-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  transition: transform var(--transition);
}

.plan-list li:hover {
  transform: translateX(5px);
}

.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--primary);
}

.competitor-table,
.services-table,
.team-table,
.financial-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.competitor-row,
.service-row,
.team-row,
.financial-row {
  display: grid;
  border-bottom: 1px solid var(--card-border);
  transition: background-color var(--transition);
}

.competitor-row:hover,
.service-row:hover,
.team-row:hover,
.financial-row:hover {
  background-color: rgba(24, 24, 27, 0.5);
}

.competitor-row {
  grid-template-columns: 1fr 1fr;
}

.service-row {
  grid-template-columns: 1fr 2fr 1fr;
}

.team-row {
  grid-template-columns: 1fr 1fr 1fr;
}

.financial-row {
  grid-template-columns: 2fr 1fr 1fr;
}

.competitor-row > div,
.service-row > div,
.team-row > div,
.financial-row > div {
  padding: 0.75rem;
}

.competitor-row.header,
.service-row.header,
.team-row.header,
.financial-row.header {
  font-weight: 600;
  background-color: rgba(14, 165, 233, 0.2);
  color: var(--primary);
}

.financial-row.total {
  font-weight: 600;
  border-top: 2px solid var(--primary);
  background-color: rgba(14, 165, 233, 0.1);
}

/* Add a fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Dots */
.navigation-dots {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.25rem;
}

.nav-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--accent);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color var(--transition);
}

.nav-dot.active {
  background-color: var(--primary);
}

/* Table of Contents */
.toc-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: var(--radius);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background-color var(--transition);
}

.toc-toggle:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.toc-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

#table-of-contents {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toc-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
}

.toc-content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 20rem;
  background-color: var(--background);
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
  padding: 4rem 2rem 2rem;
  overflow-y: auto;
}

.toc-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#toc-list {
  list-style: none;
}

#toc-list li {
  margin-bottom: 0.5rem;
}

#toc-list button {
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  background-color: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color var(--transition);
}

#toc-list button:hover {
  background-color: var(--accent);
}

#toc-list button.active {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* Media Queries */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .responsibilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .equity-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .florida-container {
    flex-direction: row;
  }

  .florida-map {
    width: 50%;
  }

  .florida-stats {
    width: 50%;
  }

  .plan-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .slide-header {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2rem;
  }

  .slide-footer {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 2rem;
    justify-content: center;
  }

  .slide-content {
    padding: 1rem 0;
  }

  .competitor-row,
  .service-row,
  .team-row,
  .financial-row {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
  }

  .competitor-row > div,
  .service-row > div,
  .team-row > div,
  .financial-row > div {
    padding: 0.5rem;
    border-bottom: 1px dashed var(--card-border);
  }

  .competitor-row > div:last-child,
  .service-row > div:last-child,
  .team-row > div:last-child,
  .financial-row > div:last-child {
    border-bottom: none;
  }

  .competitor-row.header > div,
  .service-row.header > div,
  .team-row.header > div,
  .financial-row.header > div {
    font-weight: 600;
    color: var(--primary);
  }
}

/* Add these responsive improvements to the end of the file */

/* Improved Responsive Styles */
@media (max-width: 1024px) {
  .title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .slide-content {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .subtitle,
  .section-subtitle {
    font-size: 1.125rem;
  }

  .slide {
    padding: 1rem;
  }

  .slide-content {
    padding: 1rem 0;
  }

  .framework-item {
    flex-direction: column;
  }

  .framework-icon {
    margin-bottom: 1rem;
  }

  .florida-container {
    flex-direction: column;
  }

  .florida-map,
  .florida-stats {
    width: 100%;
  }

  .stat-item {
    grid-template-columns: 100px 1fr 80px;
  }

  .phases-timeline {
    gap: 1rem;
  }

  .equity-grid,
  .projections-grid {
    gap: 1rem;
  }

  .toc-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .subtitle,
  .section-subtitle {
    font-size: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .stat-item {
    grid-template-columns: 80px 1fr 70px;
    font-size: 0.875rem;
  }

  .stats-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .stats-tab {
    width: 100%;
    text-align: center;
  }

  .business-plan-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .plan-tab {
    width: 100%;
    text-align: center;
  }

  .slide-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .slide-footer .btn {
    width: 100%;
  }
}

/* Add touch-friendly improvements */
@media (hover: none) {
  .btn {
    padding: 0.75rem 1.5rem;
  }

  .nav-dot {
    width: 0.75rem;
    height: 0.75rem;
  }

  .toc-toggle {
    width: 3rem;
    height: 3rem;
  }

  .toc-toggle svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  #toc-list button {
    padding: 0.75rem 1rem;
  }
}

/* Add a pulse animation for the county markers */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.county-marker circle:first-child {
  animation: pulse 3s infinite;
  animation-delay: calc(var(--index, 0) * 0.5s);
  transform-origin: center;
  transform-box: fill-box;
}
