/* src/styles/components/buttons.css */
/* === КНОПКИ === */
.btn-primary,
.btn-secondary,
.btn-logout,
.btn-buy,
.btn-apply,
.btn-search,
.btn-show-all,
.btn-add-requests,
.btn-delete-db {
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

/* Основная кнопка */
.btn-primary {
  background: #3498db;
  color: white;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-primary:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Вторичная кнопка */
.btn-secondary {
  background: #3498db;
  color: white;
}

.btn-secondary:hover {
  background: #2980b9;
}

/* Кнопка выхода */
.btn-logout {
  background: #e74c3c;
  color: white;
}

.btn-logout:hover {
  background: #c0392b;
}

/* Кнопка покупки */
.btn-buy {
  background: #27ae60;
  color: white;
}

.btn-buy:hover {
  background: #219653;
}

/* Кнопка применения */
.btn-apply {
  background: #3498db;
  color: white;
  padding: 8px 16px;
}

.btn-apply:hover {
  background: #2980b9;
}

/* Кнопки поиска */
.btn-search {
  background: #27ae60;
  color: white;
}

.btn-search:hover {
  background: #219653;
}

.btn-show-all {
  background: #6c757d;
  color: white;
}

.btn-show-all:hover {
  background: #5a6268;
}

/* Кнопки действий */
.btn-add-requests {
  background: #3498db;
  color: white;
  padding: 6px 12px;
}

.btn-add-requests:hover {
  background: #2980b9;
}

.btn-delete-db {
  background: #e74c3c;
  color: white;
  padding: 6px 12px;
}

.btn-delete-db:hover {
  background: #c0392b;
}

/* === КНОПКИ ЛЕНДИНГА === */
.btn-landing-primary {
  background: #27ae60;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(39, 174, 96, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-landing-primary:hover {
  background: #219653;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(39, 174, 96, 0.4);
}

.btn-landing-secondary {
  background: white;
  color: #2c3e50;
  border: 1px solid #d0d5da;
  padding: 14px 32px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-landing-secondary:hover {
  background: #f8f9fa;
  border-color: #bfc7d1;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

/* === СКАЧАТЬ === */
.download-button {
  display: block;
  width: 100%;
  padding: 12px;
  background: #2196f3;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  margin: 8px 0;
  text-align: left;
  transition: background 0.2s;
}

.download-button:hover {
  background: #1976d2;
}