/* RESET & BENDRI */
body, h2, h3, p, ul, li, input, select, button, form {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fa;
  color: #333;
}

/* KONTEINERIS */
.textbee-container {
  display: flex;
  min-height: 100vh;
}

/* ŠONINIS MENIU */
.textbee-sidebar {
  background: #eaf0fc;
  width: 220px;
  padding: 30px 20px;
}
.textbee-sidebar h2 {
  color: #2e3b5d;
  margin-bottom: 20px;
}
.textbee-step {
  background: #dbe6f8;
  color: #2e3b5d;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.textbee-step.active,
.textbee-step:hover {
  background: #6c63ff;
  color: #fff;
}

/* TURINYS */
.textbee-content {
  flex: 1;
  padding: 40px;
}
.textbee-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #2e3b5d;
}
input[type="text"], select {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
button {
  background: #66d9e8;
  color: #fff;
  padding: 12px 25px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #4fc2d1;
}

/* PROGRESO JUOSTA */
.progress-bar {
  height: 20px;
  background: #6c63ff;
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-size: 13px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* RAKTAŽODŽIAI */
.keyword-item {
  background: #f0f8ff;
  padding: 12px;
  border: 1px solid #d0e5f5;
  border-radius: 6px;
  margin-bottom: 10px;
}

/* STRAIPSNIS */
#textbee-article-output,
#textbee-final-article {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  white-space: pre-wrap;
  line-height: 1.6;
}
#textbee-final-article {
  min-height: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .textbee-container {
    flex-direction: column;
  }
  .textbee-sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 15px;
  }
  .textbee-step {
    flex: 1 1 45%;
    text-align: center;
    margin: 5px;
  }
  .textbee-content {
    padding: 20px;
  }
}