.genius-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.genius-title {
  color: #003f7d;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.genius-select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #003f7d;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.genius-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.genius-task-description {
  background-color: #f0f8ff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 63, 125, 0.1);
}

.genius-main-content {
  display: flex;
  gap: 2rem;
}

.genius-materials {
  flex: 1;
}

.genius-writing-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.genius-accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #003f7d;
  font-weight: bold;
}

.genius-accordion-content {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0f8ff;
  border-radius: 4px;
}

.genius-textarea {
  width: 100%;
  min-height: 200px;
  padding: 0.75rem;
  border: 1px solid #003f7d;
  border-radius: 4px;
  resize: vertical;
  font-size: 1rem;
}

.genius-button {
  background-color: #003f7d;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  width: 100%;
  white-space: normal;
  word-wrap: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.genius-button-inline {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
}

.genius-button:hover {
  background-color: #002a5a;
}

.genius-feedback {
  background-color: #f0f8ff;
  border: 1px solid #003f7d;
  border-radius: 4px;
  padding: 1rem;
}

.genius-table {
  width: 100%;
  border-collapse: collapse;
}

.genius-table th, .genius-table td {
  border: 1px solid #003f7d;
  padding: 0.5rem;
  text-align: left;
}

.genius-table th {
  background-color: #003f7d;
  color: white;
}

.genius-section {
  background-color: #f0f8ff;  /* Light blue background */
  border: 2px solid #003f7d;  /* Border color matching the theme */
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 63, 125, 0.1);
  margin-bottom: 2rem;
}

.genius-section h3 {
  color: #003f7d;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.genius-section h3 svg {
  margin-right: 0.5rem;
}

.genius-section ul {
  padding-left: 1.5rem;
}

.genius-section li {
  margin-bottom: 0.5rem;
}


.genius-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.genius-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #003f7d;
  border-radius: 4px;
  font-size: 1rem;
}

/* Geniuswrite specific styles */
.genius-accordion-button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #003f7d;
  font-weight: bold;
}

.genius-accordion-button svg {
  transition: transform 0.3s ease;
}

.genius-accordion-content {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f0f8ff;
  border-radius: 4px;
}

.genius-material {
  margin-bottom: 1rem;
}

.genius-feedback {
  background-color: #f0f8ff;
  border: 1px solid #003f7d;
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
}

/* about section */
.genius-about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.genius-description {
  line-height: 1.6;
}

.genius-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.genius-logos img {
  max-height: 60px;
  width: auto;
}

.genius-logos a {
  display: inline-block;
}

/* Responsive design for main content */
@media (max-width: 768px) {
  .genius-main-content {
      flex-direction: column;
  }

  .genius-materials,
  .genius-writing-area {
      width: 100%;
  }
}