@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Open Sans", sans-serif;
}

.container {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  justify-content: space-between;
  max-width: 800px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative; /* Ensures positioning of elements */
}

.images {
  width: 40%; /* Adjust width for the image */
  display: flex;
  flex-direction: column; /* Stacks images vertically */
  gap: 10px; /* Adds spacing between images */
}

.images img {
  width: 100%; /* Makes images responsive */
  border-radius: 10px;
  margin-top: 20%;
}

.text-content {
  width: 55%; /* Adjust width for text */
  text-align: left;
  margin-top: 25px;
}

.back-button {
  position: absolute;
  top: 10px;
  left: 20px;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  z-index: 10; /* Ensures it stays above other elements */
}

.back-button:hover {
  background-color: #2b1e47;
}

h1 {
  font-family: "Roboto", sans-serif;
}

.ql-editor {
  font-size: 1rem;

  ul,
  ol {
    padding-left: 0.25rem !important;
  }

  .ql-indent-1:not(.ql-direction-rtl) {
    padding-left: 2ch !important;
  }

  .ql-indent-2:not(.ql-direction-rtl) {
    padding-left: 4ch !important;
  }

  .ql-indent-3:not(.ql-direction-rtl) {
    padding-left: 6ch !important;
  }

  .ql-indent-4:not(.ql-direction-rtl) {
    padding-left: 8ch !important;
  }

  .ql-indent-5:not(.ql-direction-rtl) {
    padding-left: 10ch !important;
  }

  .ql-indent-6:not(.ql-direction-rtl) {
    padding-left: 12ch !important;
  }

  .ql-indent-7:not(.ql-direction-rtl) {
    padding-left: 14ch !important;
  }

  .ql-indent-8:not(.ql-direction-rtl) {
    padding-left: 16ch !important;
  }
}

.content {
  padding: 0 !important;
  white-space: unset !important;
  height: max-content;

  p {
    margin: 0 !important;
  }
}

.ql-container {
  overflow: visible;
}
