/* Slug Generator */
.section.slug-generator {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 70px 20px;
  text-align: center;
  border-radius: 20px;
  color: #222;
}

.tool-box {
  background: #fff;
  max-width: 700px;
  margin: 30px auto;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.text-input, .text-output {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 15px;
}
.text-input:focus, .text-output:focus {
  border-color: #2196f3;
  box-shadow: 0 0 10px rgba(33,150,243,0.3);
}

.options-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.buttons-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.btn {
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background-color: #2196f3;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background-color: #1976d2;
}

.output-title {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}
