body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(232, 233, 181);
  padding: 10px 20px;
  color: #1e1e2f;
}
.navbar img {
  height: 40px;
}
.nav-links {
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #1e1e2f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #00bcd4;
}
.content {
  margin-top: 40px;
  margin-left: 80px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.report-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #1e1e2f;
}

.data-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.data-block {
  background-color: #ffffff;
  border-left: 5px solid #00bcd4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 25px;
  width: 300px;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Moved transition here */
}

.data-block h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #333;
}

.data-block p {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #1e1e2f;
}

.data-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.iframe-container {
  margin-top: 40px;
  margin-bottom: 2%;
  max-width: 95%;
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.iframe-pair {
  display: flex;
  gap: 80px; /* This gap is important for calculating widths */
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content:flex-start;
  align-content: space-between;
}

.iframe-pair iframe {
  flex: 1 1 calc(50% - 10px); /* This is the key: 50% minus half the gap */
  min-width: 300px; /* Keep this for responsiveness on small screens */
  max-width: 44.75%; 

  /* Optional: If you want both charts to have consistent height and fill the 'block' of the pair */
  height: 470px; /* Or set to a responsive height, e.g., aspect ratio trick if possible with iframe */

  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10%; /* Consider if this margin is needed for the charts themselves */
}


.navbarbot {
  background-color: #1e1e2f;
  color: white;
  text-align: center;
  padding: 20px 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.navbarbot h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 1px;
}

.navbarbot p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ccc;
}