/* Wrapper background similar to Yes/No plugin */
.ttb-list-organizer-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #f3f4f6;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
}

.ttb-list-organizer-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.ttb-list-organizer-container textarea {
  width: 100%;
  min-height: 240px; /* approx 10 rows */
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
  resize: vertical;
}

.ttb-options > div {
  margin: 10px 0;
}

.ttb-options select {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 4px;
  margin-top: 5px;
}

#ttb-process {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  margin: 20px 0;
  cursor: pointer;
  text-align: center;
}

#ttb-process:hover {
  background-color: #2563eb;
}

.ttb-list-organizer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}

.ttb-action-btn {
  padding: 10px 16px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.ttb-action-btn:hover {
  background-color: #2563eb;
}

.ttb-filetype-dropdown {
  padding: 10px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: white;
}