/* Create a placeholder directory for logo */
.logo-placeholder {
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  background-color: var(--accent-color);
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 0.8em;
}

/* Style for the actual logo image when it's added */
.logo-image {
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: contain;
}
