/* карточный вид, совпадает с feel create_redirect */
.card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 18px;
}

/* форма настроек */
.setup-form {
  display: grid;
  gap: 14px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 14px; color: #333; }
.field input {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.field input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.35);
}

/* API блок */
.api .row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: end;
}
.api .grow { display: grid; gap: 6px; }
.label-inline { font-size: 14px; color: #333; }
.api input[type="text"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
}
.hint { color:#666; font-size:12px; margin-top:8px; display:block; }
.muted { color:#666; font-size:13px; margin-top:6px; }

/* кнопки */
.btn {
  padding: 10px 16px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.btn-primary { background: #007bff; color:#fff; }
.btn-primary:hover { background: #005ec4; }
.btn-secondary { background: #333; color:#fff; }
.btn-secondary:hover { background: #555; }

/* алерты (если используешь message/error) */
.alert { padding:10px 12px; border-radius:6px; font-size:14px; margin-bottom:12px; }
.alert.success { background:#e7f6ee; color:#22543d; border:1px solid #c6ead7; }
.alert.error   { background:#fde8e8; color:#7b1c1c; border:1px solid #f6caca; }

/* заголовки под твой стиль */
.container h1, .container h2 {
  text-align: center;
  color: #333;
  margin-top: 0;
  margin-bottom: 16px;
}

/* адаптив */
@media (max-width: 640px) {
  .api .row { grid-template-columns: 1fr; }
}

.delete-link-btn,
.delete-all-btn {
    margin-top: 10px;
    background-color: #cc0000;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.delete-link-btn:hover,
.delete-all-btn:hover {
    background-color: #990000;
}