body {
  font-size: 20px;
}

@font-face {
  font-family: "computer-modern";
  src: url(8ff5cee913df84291549.ttf) format("truetype");
}

.smanim {
  font-family: "computer-modern", sans-serif;
}

.action-text {
  color: blue;
  cursor: pointer;
}

.action-text:hover {
  text-decoration: underline;
}

.muted-text {
  color: grey;
}

.split-layout {
  flex-direction: row;
}

@media (max-width: 75rem) {
  .split-layout {
    flex-direction: column;
  }
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 500px;
}

a {
  text-decoration: none;
}

/* CSS for SVG element */
.clickable {
  cursor: pointer;
}

.clickable:hover {
  stroke: blue;
  stroke-width: 2px;
}

.line-highlight {
  background-color: rgba(135, 206, 235, 0.5);
}

.input-focus-outline-green:focus {
  outline: 2px solid green;
}

.input-focus-outline-red:focus {
  outline: 2px solid red;
}

.textarea {
  flex-grow: 1;
  border: none;
  outline: none;
  resize: none;
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f0f0f0;
}

.chat-box {
  display: flex;
  align-items: flex-end;
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
}

.send-button {
  color: #f0f0f0;
  background-color: blue;

  border: none;
  padding: 4px 8px;
  margin-left: 4px;
  margin-bottom: 2px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 20px;
}

.textarea:focus,
.send-button:hover {
  outline: blue;
}

