/* buttons.css — all .dag-btn / .btn variants */
/* Migrated from style.css [stage S3.1] */

.dag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.dag-btn--primary {
  background: #111;
  color: #fff;
}

.dag-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.dag-btn--ghost {
  background: #fff;
  border-color: #d7d7d7;
  color: #111;
}

.dag-btn--ghost:hover {
  background: #f7f7f8;
}

.dag-btn--small {
  padding: 10px 14px;
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #e52424;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,.5);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: #05060a;
  transform: translateY(-1px);
}
