﻿/* LAYOUT */
/* COLORS */
/* FONT SIZES */
/* CONSTANTS */
/* CLASSES */
/* MIXINS */
.content-editor-block-outer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-editor-block-container {
  width: 100%;
  background-color: #eee;
  padding: 20px;
  border-radius: 10px;
}

.content-editor-block-properties-box {
  margin-bottom: 20px;
}

.content-editor-preview-button {
  width: 200px;
  margin-top: 15px;
}

.content-editor-insert-button {
  width: 170px;
}

.content-editor-block-preview, .content-editor-block-interview-preview, .content-editor-block-video-preview, .content-editor-block-image-preview, .content-editor-block-image-and-text-preview, .content-editor-block-html-preview {
  background-color: white;
  border-radius: 5px;
  padding: 30px;
}

.content-editor-block-image-and-text-preview {
  display: flex;
  gap: 10px;
}

.content-editor-block-image-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-editor-block-video-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-editor-block-interview-preview .content-editor-block-interview-question {
  font-weight: bold;
}
.content-editor-block-interview-preview .content-editor-block-interview-answer .content-editor-block-interview-eh-name {
  font-weight: bold;
}

.content-editor-image-preview {
  max-width: 500px;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.content-editor-image-preview img {
  max-width: 500px;
  max-height: 500px;
}
.content-editor-image-preview p {
  font-style: italic;
}

.content-editor-video-preview {
  max-width: 500px;
  max-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-editor-video-preview video {
  max-width: 500px;
  max-height: 500px;
}
