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

body {
  font-family: Arial, sans-serif;
  padding: 20px;
  font-size: 15px;
}

h1.centered {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
}
.header-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.header-bar h1 {
  font-size: 40px;
  text-align: center;
}

.info-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.info-icon {
  background-color: white;
  color: black;
  border: 2px solid black;
  font-weight: bold;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.tooltip {
  position: absolute;
  top: 30px;
  right: 0;
  width: 250px;
  background-color: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 13px;
  display: none;
  z-index: 100;
}


.hamburger-icon {
  width: 30px;
  cursor: pointer;
  padding: 10px 0;
}

.hamburger-icon div {
  width: 30px;
  height: 4px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.4s;
}

.menu {
  display: none;
  flex-direction: column;
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  width: fit-content;
}

.menu a {
  text-decoration: none;
  color: #000;
  margin: 5px 0;
}

.menu a:hover {
  color: #007BFF;
}

.menu.active {
  display: flex;
}
.main.page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.section {
  display: flex;
  flex-direction: column;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 300px;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.research-info {
  margin-top: 40px;
  padding: 20px;
  border-top: 2px solid #ccc;
  background-color: #f9f9f9;
  font-size: 15px;
}

.research-info .info-text {
  margin-bottom: 20px;
}

.research-info p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.citation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.citation-table th,
.citation-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
  background-color: #fff;
}

.citation-table th {
  background-color: #eee;
  font-weight: bold;
}

