body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: #f9f9f9;
  color: #333;
}

.logo {
  position: fixed;
  width: 50px;
  border-radius: 100%;
  height: 50px;
  padding: 10px;
  
  cursor: pointer;
}

.logo img {
  height: 100%;
}

.blog-post {
  display: flex;
  flex-direction: column;
  max-width: 60%;
  margin: auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.blog-title {
  font-size: 2em;
  margin-bottom: 0px;
  word-break: break-word;
  color: #333;
  border-style: dotted;
  border-color: whitesmoke;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9em;
  color: #777;
  background-color: whitesmoke;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.profile-picture-author {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid whitesmoke;
}

.divider {
  color: #ccc;
}

.blog-body {
  width: 100%;
  border-style: dotted;
  height: 100%;
}

.profile-picture {
  width: 100px; 
  height: 100px; 
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid whitesmoke;
}

.profile-picture-container {
  display: flex;
  flex-shrink: 0;
}

.toolbar {
  display: flex;
  position: relative;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.toolbar-style {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-type-container {
  position: relative;
}

.lists-container {
  position: relative;
}

.list-icon {
  align-content: center;
}

.insert-container {
  position: relative;
}

.toolbar button {
  padding: 5px 10px;
  font-size: 16px;
  cursor: default;
  background: none;
  border: none;
}

.toolbar img {
  width: 15px;
  height: 15px;
}

.toolbar-divider {
  border-right-style: solid;
}

.title {
  width: 100%;

  font-size: 2em;
  line-height: 1.2;
  font-weight: bold;
  font-family: inherit;

  border: none;
  outline: none;
  resize: none;

  color: #333;
}

.field-container {
  padding-top: 25px;
  margin-left: 1em;
}

.field-container--invalid label {
  text-decoration: red wavy underline;
}

.optional {
  color: gray;
  font-family: monospace;
}

.login-message-container {
  padding-top: 75px;
  margin-left: 1em;
  padding-bottom: 25px;
}

.login-message a {
  text-decoration: none;
}

.preview-button {
  background-color: whitesmoke;
  border: none;
  border-radius: 10px;
  margin-left: 10px;
  font-size: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 20px;
}

.preview-button--deactivated {
  pointer-events: none;
  color: grey;
}

.preview-button--activated {
  pointer-events: auto;
  color: black;
}

.preview-button:hover {
  background-color: #3333;
  border-radius: 10px;
}
