/* General Styles */
body {
  font-family: "Arial", sans-serif;
  background-color: white;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-y: auto;
}

/* Container Styling */
.container {
  width: 95%;
  max-width: 1400px;
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  animation: fadeIn 1s ease-in-out;
  margin: 100px auto 40px auto;
  border: 1px solid #ccc;
}

/* Navbar Styling */
.navbar {
  background-color: #2b7a78;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

/* Title Styling */
h1, h3, h4 {
  color: #2b7a78;
}

/* Paragraph Styling */
p {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
}

/* Button Group Styling */
.button-group {
  margin-top: 20px;
  text-align: center;
}

/* Buttons Styling */
button {
  background-color: #2b7a78;
  color: white;
  padding: 12px 20px;
  margin: 8px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background-color: #1f5b52;
  transform: scale(1.05);
}

/* Input Field Styling */
input[type="text"] {
  width: 60%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
}

/* Section Styling */
.section {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

/* Table Wrapper */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

/* Table Styling */
table {
  width: 100%;
  min-width: 800px;
  border-collapse: collapse;
}

th, td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  white-space: nowrap;
}

th {
  background-color: #2b7a78;
  color: white;
}

/* Details Box */
.details {
  border: 1px solid #ccc;
  padding: 15px;
  display: none;
  margin-top: 10px;
  background: #f9f9f9;
  border-radius: 5px;
}

/* Scroll Box (expanded) */
.scroll-box {
  overflow-y: visible !important;
  max-height: none !important;
}

/* Tab Buttons */
.circ-tab-buttons {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.circ-tab-buttons button {
  padding: 10px 15px;
  background-color: #2b7a78;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.circ-tab-buttons button:hover {
  background-color: #1f5b52;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    width: 95%;
    padding: 20px;
  }

  .navbar {
    font-size: 18px;
    padding: 10px;
  }

  h1 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  input[type="text"] {
    width: 90%;
  }

  table {
    min-width: 600px;
  }
}

/* === Banner Header without Image === */
.top-banner {
  background: linear-gradient(to right, #b0d3db, #c6dde4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 30px;
  border-bottom: 3px solid #2b7a78;
}

.banner-text-only h1 {
  font-size: 28px;
  margin: 0;
  color: #444;
  font-weight: normal;
}

.banner-text-only .highlight {
  font-style: italic;
  font-weight: bold;
  color: #2b7a78;
}

.banner-text-only .subtitle {
  font-size: 15px;
  margin-top: 5px;
  color: #333;
  text-align: center;
}

/* === Horizontal Navigation Tabs (like circAtlas) === */
.main-navbar {
  display: flex;
  justify-content: center;
  background-color: #397a90;
  padding: 10px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.nav-item {
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.nav-item:hover,
.nav-item.active {
  background-color: #2b5f6e;
  transform: scale(1.05);
}
