/* NFCC Messages – centered, clean, no side accent */

.nfcc-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-width: 760px;

  /* CENTER THE CARD */
  margin: 32px auto;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: rgba(0,0,0,.88);
}

/* Remove left accent entirely */
.nfcc-card--success,
.nfcc-card--info,
.nfcc-card--warning {
  border-left: none;
}

/* Header */
.nfcc-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nfcc-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: rgba(0,0,0,.92);
}

/* Body */
.nfcc-card__body {
  padding: 20px 24px 8px 24px;
}

.nfcc-card__lead {
  margin: 0 0 12px 0;
  font-weight: 600;
  color: rgba(0,0,0,.9);
}

.nfcc-card__hint {
  margin-top: 12px;
  margin-bottom: 0;
  color: rgba(0,0,0,.65);
}

/* Actions */
.nfcc-card__actions {
  padding: 8px 24px 20px 24px;
  display: flex;
  justify-content: center; /* center buttons */
  gap: 12px;
  flex-wrap: wrap;
}

/* Footer */
.nfcc-card__footer {
  padding: 14px 24px 18px 24px;
  border-top: 1px solid rgba(0,0,0,.06);
  color: rgba(0,0,0,.6);
  text-align: center;
}

.nfcc-card__footer a {
  color: inherit;
}

/* Buttons */
.nfcc-btn {
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  transition: filter .15s ease, transform .15s ease;
}

.nfcc-btn--primary {
  background: #c64a12;
  color: #ffffff;
}

.nfcc-btn--primary:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .nfcc-card {
    margin: 20px 16px;
  }

  .nfcc-btn {
    min-width: 100%;
  }
}
