.container {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.divider {
  display: none;
}

.title {
  display: none;
}

.input {
  max-width: 500px;
  border-radius: 15px 15px 0px 15px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin-left: auto;
  margin-right: 55px;
  margin-bottom: 20px;
  position: relative;
}

.input::after {
  content: '';
  background-image: url('https://codefinity-content-media-v2.s3.eu-west-1.amazonaws.com/courses/c1087363-9025-4c37-8d5e-983a32a007e9/text-boxes-section/prompt-input-output/user-icon.svg');
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  right: -45px;
  bottom: 0px;
}

.output {
  max-width: 500px;
  border-radius: 0px 15px 15px 15px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin-left: 55px;
  position: relative;
}

.output::before {
  content: '';
  background-image: url('https://codefinity-content-media-v2.s3.eu-west-1.amazonaws.com/courses/c1087363-9025-4c37-8d5e-983a32a007e9/text-boxes-section/prompt-input-output/gpt-icon.svg');
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  left: -45px;
  top: 0px;
}

.content {
  font-family: 'Hind Siliguri', sans-serif;
  line-height: 1.5;
  color: #080808;
}

code {
  color: crimson;
  background-color: #e2e2e2;
  padding-left: 4px;
  padding-right: 5px;
  border-radius: 4px;
  font-family: Monaco, Ubuntu Mono, sans-serif;
}

b {
  font-weight: 600;
}

i {
  font-weight: italic;
}

ul {
  margin-left: 40px;
  list-style: disc;
}

ol {
  margin-left: 40px;
  list-style: decimal;
}

li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  font-family: 'Hind Siliguri', sans-serif;
  line-height: 1.5;
  color: #080808;
}

li::before {
  content: '•';
  padding-right: 5px;
  color: black;
}

.content h1,
.content h2,
.content h3 {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 22px;
  font-weight: 600;
}

.content h3 {
  font-size: 20px;
  font-weight: 600;
  display: inline;
}

.output pre,
.input pre {
  overflow: auto;
}
