/* src/styles/components/cards.css */
/* === КАРТОЧКИ === */
.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Карточка преимущества */
.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  font-size: 2.2em;
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin: 0 0 12px 0;
  color: #2c3e50;
  font-size: 1.3em;
}

.benefit-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Карточка пользователя */
.user-card {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.user-card:hover {
  background: #f0f0f0;
}

.user-card.user-deleted {
  opacity: 0.6;
}

.user-info {
  flex: 1;
}

.user-card .user-name {
  font-weight: bold;
  color: #2c3e50;
  font-size: 1em;
}

.user-card .user-email {
  color: #7f8c8d;
  font-size: 0.9em;
}

.user-quota {
  text-align: right;
  font-size: 0.9em;
  color: #666;
}

.user-quota div {
  margin: 2px 0;
}

.user-actions {
  display: flex;
  gap: 8px;
}

/* === ТАРИФНАЯ КАРТОЧКА === */
.tariff-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tariff-card:hover {
  border-color: #3498db;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tariff-card input[type="radio"] {
  display: none;
}

.tariff-card label {
  display: block;
  cursor: pointer;
}

.tariff-card.selected {
  border-color: #4caf50;
  background: #f0fff0;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
}

.tariff-card.hovered {
  border-color: #3498db;
  background: #f0f9ff;
}

.tariff-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.tariff-requests {
  font-size: 1.2em;
  font-weight: bold;
  color: #2c3e50;
}

.tariff-price {
  font-size: 1.3em;
  font-weight: bold;
  color: #27ae60;
}

.tariff-per-request {
  font-size: 0.9em;
  color: #7f8c8d;
}