/* Custom styles to match the provided look and feel */
.main-container {
  max-width: 1000px;
  margin: 112px auto;
  padding: 2rem;
}

.button {
  padding: 0.75rem 1.5rem;
  background-color: #1e1e2f;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.button:hover {
  background-color: #36365a;
  transform: translateY(-1px);
}

.tool-seo {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.tool-seo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #1e1e2f;
}
.tool-seo p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: #444;
}
.tool-seo ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.result-box {
  border-left: 4px solid #1e1e2f;
  background-color: #f7f7f9;
}
.placeholder-box {
  border: 2px dashed #ccc;
  background-color: #fff;
}
@media (max-width: 768px) {
  .main-container {
    padding: 1rem;
  }
  .tool-seo {
    margin: 1rem;
  }
}
