@media (max-width: 768px) {
    .content, .main-content, .post-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        text-align: left; /* Adjust alignment

.search-container {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}

#search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 10px;
  padding: 4px;
  color: inherit;
  display: flex;
  align-items: center;
}

#search-box {
  width: 0;
  opacity: 0;
  padding: 0.4em 0.6em;
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  color: inherit;
  transition: width 0.3s ease, opacity 0.3s ease, border 0.3s ease;
}

#search-box.show {
  width: 180px;
  opacity: 1;
  border-color: currentColor;
}

/* Light mode */
@media (prefers-color-scheme: light) {
  #search-box {
    background-color: #fff;
    color: #000;
    border-color: #ccc;
  }

  #search-box.show {
    border-color: #999;
  }

  #search-box::placeholder {
    color: #777;
  }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  #search-box {
    background-color: #1e1e1e;
    color: #f1f1f1;
    border-color: #444;
  }

  #search-box.show {
    border-color: #888;
  }

  #search-box::placeholder {
    color: #aaa;
  }
}
