body {
  background: rgb(244, 244, 244);
}
.content {
  /* max-width: 800px; */
  /* Adjust width as needed */
  margin: 0 auto; /* Centering */
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  word-wrap: break-word;
}
.content > * {
  margin-bottom: 8px;
}
.content h1 {
  font-size: 30px;
  font-weight: 700;
  color: rgb(65, 65, 65);
  margin-bottom: 15px;
}
.content h2 {
  font-size: 27px;
  font-weight: 700;
  color: rgb(65, 65, 65);
  margin-bottom: 10px;
}
.content h3 {
  font-size: 25px;
  font-weight: 700;
  color: rgb(65, 65, 65);
  margin-bottom: 5px;
}
.content p {
  line-height: 23px;
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
  margin-bottom: 8px;
}
.content a {
  line-height: 23px;
  font-size: 18px;
  color: rgb(34, 34, 180);
}

.content a:hover {
  text-decoration: underline;
}

.content img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.ckeditor-content {
  margin: 0 auto; /* Centering */
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  word-wrap: break-word;
}

/* Headings */
.ckeditor-content h1 {
  font-size: 28px;
  color: #222;
  margin-bottom: 12px;
  font-weight: bold;
}

.ckeditor-content h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.ckeditor-content h3 {
  font-size: 20px;
  color: #444;
  margin-bottom: 8px;
  font-weight: bold;
}

/* Paragraphs */
.ckeditor-content p {
  margin-bottom: 16px;
  text-align: justify;
}

/* Links */
.ckeditor-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.ckeditor-content a:hover {
  text-decoration: underline;
}

/* Lists */
.ckeditor-content ul,
.ckeditor-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.ckeditor-content ul li,
.ckeditor-content ol li {
  margin-bottom: 6px;
}

/* Blockquotes */
.ckeditor-content blockquote {
  background: #f8f9fa;
  border-left: 5px solid #007bff;
  margin: 20px 0;
  padding: 12px;
  font-style: italic;
  color: #555;
}

/* Code blocks */
.ckeditor-content pre {
  background: #f4f4f4;
  padding: 12px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  overflow-x: auto;
}

/* Tables */
.ckeditor-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.ckeditor-content table th,
.ckeditor-content table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

.ckeditor-content table th {
  background: #007bff;
  color: white;
}

/* Images */
.ckeditor-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin: 12px auto;
}

/* Horizontal Rule */
.ckeditor-content hr {
  border: 0;
  height: 1px;
  background: #ccc;
  margin: 20px 0;
}
