/* Reset and Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* Header Styles */
h1 {
  color: #2c3e50;
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  margin: 30px 0;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  color: #2c3e50;
  margin: 30px 0 15px 0;
  font-size: 1.5rem;
  border-left: 4px solid #ff6b6b;
  padding-left: 15px;
}

/* Paragraph Styles */
p {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Table Styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 800px;
}

th {
  background: #f8f9fa;
  color: #333;
  padding: 10px 12px;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid #dee2e6;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

tr:hover td {
  background-color: #f8f9fa;
}

tr:nth-child(even) td {
  background-color: #f9f9f9;
}

#map, iframe {
  height: 100vh;
  width: 100%;
}

.float-right {
  float: right;
}

.tooltip {
  position: relative;
  z-index: 1001;
}

/* Back to Top Button */
.jump-top-div {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.bottom-left {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.bottom-left:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #ff5252, #26a69a);
}

footer {
  background: rgba(255, 255, 255, 0.9);
  color: #2c3e50;
  text-align: center;
  padding: 10px;
  margin-top: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}


/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  div {
    padding: 0 15px;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 10px 8px;
  }

  .full-height {
    height: 100vh;
  }

  .jump-top-div {
    bottom: 20px;
    left: 20px;
  }

  .bottom-left {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  table {
    font-size: 0.8rem;
  }

  th, td {
    padding: 8px 5px;
  }
}