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

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

h1 {
  font-size: 40px;
}

.header-container {
  display: flex;
  align-items: center;
  position: relative;
  /* keep full width */
}

.header-container h1 {
  flex: 1;
  text-align: center;
  margin: 0;
}

.info-icon {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: white;
  color: black;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  cursor: help;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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 {
  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;
  height: calc(100vh - 150px);
}

.ideas-section {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.right-sections {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

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

textarea {
  width: 100%;
  flex: 1;
  min-height: 120px;
  padding: 10px;
  font-size: 16px;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Make the thesis placeholder box match the textarea style */
.placeholder-box.textarea-mimic {
  min-height: 120px;
  flex: 1;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
  resize: vertical;
  display: block;
}
.ideas-section button {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  align-self: flex-start;
}
