/* =========================================
   DFL UI Primitives (buttons, badges, cards)
   Used by dashboard and account pages
   ========================================= */

.dfl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,.14);
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
}

.dfl-btn:hover {
  transform: translateY(-1px);
}

.dfl-btn--primary {
  background: var(--dfl-red, #E74C3C);
  color: #fff;
  border-color: rgba(0,0,0,.2);
}

.dfl-btn--primary:hover {
  background: var(--dfl-blue, #2980B9);
  color: #fff;
}

.dfl-btn--danger {
  background: #fff;
  color: var(--dfl-red, #E74C3C);
  border-color: rgba(231,76,60,.4);
}

.dfl-btn--danger:hover {
  background: rgba(231,76,60,.08);
  border-color: rgba(231,76,60,.55);
}

.dfl-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dfl-badge--success {
  background: rgba(46,204,113,.15);
  color: #27AE60;
  border: 1px solid rgba(46,204,113,.35);
}

.dfl-badge--warn {
  background: rgba(241,196,15,.2);
  color: #B7950B;
  border: 1px solid rgba(241,196,15,.4);
}

.dfl-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: hidden;
}

.dfl-muted {
  font-size: 13px;
  color: rgba(0,0,0,.6);
  line-height: 1.4;
}
