:root {
  --fpd-green: #48a71d;
  --fpd-green-deep: #295f10;
  --fpd-green-soft: #edf7e5;
  --fpd-gold: #f2bc19;
  --fpd-gold-deep: #d49f08;
  --fpd-ink: #172111;
  --fpd-muted: #66715a;
  --fpd-border: #dce5cf;
  --fpd-surface: #ffffff;
  --fpd-shell: #f4f7ee;
  --fpd-danger: #cf3f3f;
  --fpd-warning: #d18b08;
  --fpd-info: #2d8ee2;
  --fpd-shadow: 0 24px 60px rgba(22, 34, 14, 0.16);
}

body.fpd-admin-login,
body.fpd-admin-dashboard {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--fpd-ink);
}

body.fpd-admin-login .container-scroller,
body.fpd-admin-dashboard .container-scroller,
body.fpd-admin-login .page-body-wrapper,
body.fpd-admin-dashboard .page-body-wrapper,
body.fpd-admin-login .main-panel,
body.fpd-admin-dashboard .main-panel,
body.fpd-admin-login .content-wrapper,
body.fpd-admin-dashboard .content-wrapper {
  min-width: 0;
}

body.fpd-admin-login {
  background:
    radial-gradient(circle at top left, rgba(242, 188, 25, 0.28), transparent 36%),
    radial-gradient(circle at right center, rgba(72, 167, 29, 0.24), transparent 30%),
    linear-gradient(135deg, #eff4e7 0%, #f9f4db 52%, #eff6e9 100%);
}

.fpd-auth-wrapper {
  min-height: 100vh;
  padding: 28px 18px;
  overflow: hidden;
}

.fpd-auth-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: var(--fpd-surface);
  box-shadow: var(--fpd-shadow);
}

.fpd-auth-shell::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px calc(50% - 1px);
  width: 2px;
  background: linear-gradient(180deg, rgba(72, 167, 29, 0), rgba(72, 167, 29, 0.22), rgba(242, 188, 25, 0.18), rgba(72, 167, 29, 0));
  pointer-events: none;
}

.fpd-auth-panel {
  min-width: 0;
}

.fpd-auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 44px 40px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(135deg, #4daa1e 0%, #2e7014 62%, #163807 100%);
}

.fpd-auth-brand::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 188, 25, 0.62), rgba(242, 188, 25, 0));
  pointer-events: none;
}

.fpd-auth-logo-wrap {
  width: 132px;
  padding: 14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.fpd-auth-logo,
.fpd-auth-form-logo {
  display: block;
  width: 100%;
  height: auto;
}

.fpd-auth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.fpd-auth-kicker::before {
  content: "";
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: var(--fpd-gold);
}

.fpd-auth-brand h1 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.05;
  color: #fff;
}

.fpd-auth-lead {
  max-width: 32rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.fpd-auth-highlights {
  display: grid;
  gap: 14px;
}

.fpd-auth-highlight {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.fpd-auth-highlight i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.35rem;
  color: var(--fpd-gold);
  background: rgba(255, 255, 255, 0.12);
}

.fpd-auth-highlight strong,
.fpd-auth-highlight span {
  display: block;
}

.fpd-auth-highlight strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
}

.fpd-auth-highlight span {
  margin-top: 5px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.fpd-auth-footer .btn {
  padding: 0.8rem 1.35rem;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.fpd-auth-footer .btn:hover,
.fpd-auth-footer .btn:focus {
  color: var(--fpd-ink);
  background: #fff;
  border-color: #fff;
}

.auth-form-light.fpd-auth-panel {
  padding: 44px 40px;
  background:
    radial-gradient(circle at top right, rgba(242, 188, 25, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcf7 100%);
}

.fpd-auth-form-head {
  margin-bottom: 28px;
}

.fpd-auth-form-head .brand-logo {
  width: 108px;
  margin-bottom: 20px;
}

.fpd-auth-form-head h4 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fpd-ink);
}

.fpd-auth-form-head h6 {
  margin-bottom: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--fpd-muted);
}

.fpd-input-wrap {
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 0 14px;
  border-radius: 18px;
  border: 1px solid var(--fpd-border);
  background: #f8fbf3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fpd-input-wrap:focus-within {
  border-color: rgba(72, 167, 29, 0.52);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(72, 167, 29, 0.12);
}

.fpd-input-wrap > i {
  font-size: 1.2rem;
  color: var(--fpd-green);
}

.fpd-input-wrap .form-control {
  height: auto;
  min-height: 60px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: var(--fpd-ink);
  box-shadow: none;
}

.fpd-input-wrap .form-control::placeholder {
  color: #8a957d;
}

.fpd-password-toggle {
  border: 0;
  background: transparent;
  color: var(--fpd-muted);
  padding: 0;
  line-height: 1;
}

.fpd-password-toggle:hover,
.fpd-password-toggle:focus {
  color: var(--fpd-green);
  outline: none;
}

.fpd-auth-meta {
  gap: 12px;
  font-size: 0.92rem;
  color: var(--fpd-muted);
}

.fpd-auth-meta a {
  font-weight: 600;
  color: var(--fpd-green-deep);
}

.fpd-auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-gold-deep) 100%);
  box-shadow: 0 16px 30px rgba(72, 167, 29, 0.24);
}

.fpd-auth-submit:hover,
.fpd-auth-submit:focus {
  background: linear-gradient(135deg, var(--fpd-green-deep) 0%, var(--fpd-gold) 100%);
}

.fpd-auth-help {
  font-size: 0.94rem;
  color: var(--fpd-muted);
}

.fpd-auth-help a {
  font-weight: 700;
}

.fpd-admin-modal .modal-dialog {
  max-width: 480px;
}

.fpd-admin-modal .modal-content {
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 28, 12, 0.22);
}

.fpd-admin-modal .modal-body {
  padding: 34px 30px;
}

.fpd-admin-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  border-radius: 26px;
  font-size: 2.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--fpd-info) 0%, #155ba1 100%);
}

.fpd-admin-modal__icon.is-info {
  background: linear-gradient(135deg, var(--fpd-info) 0%, #155ba1 100%);
}

.fpd-admin-modal__icon.is-warning {
  background: linear-gradient(135deg, var(--fpd-warning) 0%, #a06200 100%);
}

.fpd-admin-modal__icon.is-danger {
  background: linear-gradient(135deg, var(--fpd-danger) 0%, #a22f2f 100%);
}

.fpd-admin-modal__icon.is-success,
.fpd-admin-modal__icon--success {
  background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-gold-deep) 100%);
}

.fpd-admin-modal h4 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--fpd-ink);
}

.fpd-admin-modal p {
  color: var(--fpd-muted);
  line-height: 1.65;
}

.fpd-progress-shell {
  height: 14px;
  border-radius: 999px;
  background: #edf2e4;
  overflow: hidden;
}

.fpd-progress-bar {
  background: linear-gradient(90deg, var(--fpd-green) 0%, var(--fpd-gold) 100%);
}

.fpd-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  color: var(--fpd-muted);
  font-size: 0.92rem;
}

.fpd-progress-meta strong {
  color: var(--fpd-green-deep);
}

body.fpd-admin-dashboard {
  background:
    radial-gradient(circle at top right, rgba(242, 188, 25, 0.14), transparent 26%),
    linear-gradient(180deg, #edf3e5 0%, #f8faf3 100%);
}

body.fpd-admin-dashboard .navbar.default-layout-navbar {
  box-shadow: 0 10px 32px rgba(24, 35, 15, 0.08);
  border-bottom: 1px solid rgba(34, 51, 22, 0.08);
}

body.fpd-admin-dashboard .navbar-brand-wrapper {
  background: linear-gradient(180deg, #347814 0%, #22480c 100%);
}

.fpd-brand-link,
.fpd-brand-link-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.fpd-brand-link:hover,
.fpd-brand-link-mini:hover,
.fpd-brand-link:focus,
.fpd-brand-link-mini:focus {
  text-decoration: none;
}

.fpd-brand-mark,
.fpd-brand-link-mini .fpd-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  padding: 6px;
}

.fpd-brand-link img,
.fpd-brand-link-mini img {
  display: block;
  width: 100%;
  height: auto;
}

.fpd-brand-wording {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
  color: #fff;
}

.fpd-brand-wording strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fpd-brand-wording span {
  font-size: 0.76rem;
  opacity: 0.78;
}

.fpd-top-search .form-control {
  min-width: 240px;
  background: #f6f9ef;
  border-radius: 14px;
  border-color: transparent;
}

.fpd-top-search .input-group-text {
  color: var(--fpd-green-deep);
}

.fpd-top-search .form-control,
.fpd-top-search .input-group-text {
  background: #f6f9ef;
  border-color: transparent;
}

.fpd-header-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(72, 167, 29, 0.1);
  color: var(--fpd-green-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.fpd-top-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fpd-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-gold-deep) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 20px rgba(72, 167, 29, 0.18);
}

.fpd-user-avatar--sidebar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.fpd-top-profile__text {
  text-align: left;
}

.fpd-top-profile__text p {
  margin: 0;
  line-height: 1.2;
}

.fpd-top-profile__text .text-muted {
  font-size: 0.78rem;
}

body.fpd-admin-dashboard .sidebar {
  background: linear-gradient(180deg, #24490f 0%, #142907 100%);
}

body.fpd-admin-dashboard .sidebar .nav .nav-item.nav-category {
  color: rgba(255, 255, 255, 0.46);
  letter-spacing: 0.14em;
}

body.fpd-admin-dashboard .sidebar .nav .nav-link {
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.8);
}

body.fpd-admin-dashboard .sidebar .nav .nav-link:hover,
body.fpd-admin-dashboard .sidebar .nav .nav-link:focus,
body.fpd-admin-dashboard .sidebar .nav .nav-link.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(242, 188, 25, 0.14));
}

body.fpd-admin-dashboard .sidebar .nav .nav-link .icon-bg {
  background: rgba(255, 255, 255, 0.08);
}

body.fpd-admin-dashboard .sidebar .nav .nav-link:hover .icon-bg,
body.fpd-admin-dashboard .sidebar .nav .nav-link.active .icon-bg {
  background: rgba(242, 188, 25, 0.24);
}

.fpd-sidebar-user {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.fpd-sidebar-user .badge {
  font-size: 0.72rem;
}

.fpd-sidebar-mini-text {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.64);
}

body.fpd-admin-dashboard .content-wrapper {
  padding: 26px 24px 28px;
  background: transparent;
}

.fpd-dashboard-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  background:
    linear-gradient(120deg, rgba(72, 167, 29, 0.94) 0%, rgba(40, 95, 16, 0.96) 36%, rgba(255, 255, 255, 0.98) 36.3%, rgba(255, 255, 255, 1) 100%);
  box-shadow: var(--fpd-shadow);
}

.fpd-dashboard-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 188, 25, 0.34), rgba(242, 188, 25, 0));
}

.fpd-dashboard-hero .card-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.fpd-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.fpd-hero-copy {
  min-width: 0;
}

.fpd-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.fpd-dashboard-hero h1 {
  margin: 16px 0 12px;
  max-width: 32rem;
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.fpd-dashboard-hero p {
  margin-bottom: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.fpd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.fpd-hero-actions .btn {
  border-radius: 16px;
}

.fpd-hero-meta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.fpd-hero-panel {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(18, 32, 11, 0.08);
}

.fpd-hero-panel h5 {
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fpd-muted);
}

.fpd-hero-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
  color: var(--fpd-ink);
}

.fpd-hero-panel p {
  margin: 0;
  color: var(--fpd-muted);
}

.fpd-super-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fpd-super-grid span {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f4f8ec;
  font-size: 0.86rem;
  color: var(--fpd-muted);
}

.fpd-super-grid strong {
  display: block;
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--fpd-ink);
}

.fpd-stat-card,
.fpd-admin-surface {
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(19, 31, 13, 0.08);
}

.fpd-stat-card .card-body,
.fpd-admin-surface .card-body {
  padding: 24px;
}

.fpd-stat-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.fpd-stat-copy {
  min-width: 0;
}

.fpd-stat-copy h5 {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fpd-muted);
}

.fpd-stat-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fpd-ink);
}

.fpd-stat-copy p {
  margin-bottom: 0;
  color: var(--fpd-muted);
}

.fpd-stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  font-size: 1.7rem;
}

.fpd-stat-icon--green {
  color: #fff;
  background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-green-deep) 100%);
}

.fpd-stat-icon--gold {
  color: var(--fpd-ink);
  background: linear-gradient(135deg, var(--fpd-gold) 0%, #f7da7b 100%);
}

.fpd-stat-icon--ink {
  color: #fff;
  background: linear-gradient(135deg, #3f5343 0%, #1f2a1a 100%);
}

.fpd-stat-icon--danger {
  color: #fff;
  background: linear-gradient(135deg, var(--fpd-danger) 0%, #8e2525 100%);
}

.fpd-admin-surface .card-header {
  padding: 22px 24px 0;
  border: 0;
  background: transparent;
}

.fpd-surface-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.fpd-surface-header h4 {
  margin-bottom: 6px;
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--fpd-ink);
}

.fpd-surface-header p {
  margin-bottom: 0;
  color: var(--fpd-muted);
}

.fpd-quick-list,
.fpd-mini-list {
  display: grid;
  gap: 14px;
}

.fpd-quick-action,
.fpd-mini-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: flex-start;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f8fbf3;
  border: 1px solid #edf2e6;
  color: inherit;
  text-decoration: none;
}

.fpd-quick-action {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fpd-quick-action:hover,
.fpd-quick-action:focus {
  transform: translateY(-2px);
  border-color: rgba(72, 167, 29, 0.22);
  box-shadow: 0 14px 28px rgba(20, 33, 11, 0.08);
  text-decoration: none;
}

.fpd-quick-action i,
.fpd-mini-item i,
.fpd-mini-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 1.2rem;
}

.fpd-quick-action i {
  color: var(--fpd-green-deep);
  background: rgba(72, 167, 29, 0.12);
}

.fpd-mini-avatar {
  background: linear-gradient(135deg, var(--fpd-green) 0%, var(--fpd-gold-deep) 100%);
  color: #fff;
  font-weight: 700;
}

.fpd-item-copy {
  display: block;
  min-width: 0;
}

.fpd-item-copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fpd-ink);
}

.fpd-item-copy span {
  display: block;
  color: var(--fpd-muted);
  line-height: 1.5;
}

.fpd-item-copy .fpd-pill {
  display: inline-flex;
}

.fpd-table-shell {
  overflow: hidden;
}

.fpd-table-shell .table-responsive {
  min-width: 0;
}

.fpd-table-shell table {
  margin-bottom: 0;
}

.fpd-table-shell thead th {
  border-top: 0;
  border-bottom: 1px solid #e9efdf;
  color: var(--fpd-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.fpd-table-shell tbody td {
  vertical-align: middle;
  border-color: #eef3e7;
}

.fpd-post-title {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--fpd-ink);
}

.fpd-post-meta {
  color: var(--fpd-muted);
  font-size: 0.84rem;
}

.fpd-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fpd-pill--published {
  background: rgba(72, 167, 29, 0.12);
  color: var(--fpd-green-deep);
}

.fpd-pill--draft {
  background: rgba(242, 188, 25, 0.16);
  color: #8e6800;
}

.fpd-pill--active {
  background: rgba(72, 167, 29, 0.12);
  color: var(--fpd-green-deep);
}

.fpd-pill--disabled {
  background: rgba(207, 63, 63, 0.12);
  color: #9b2b2b;
}

.fpd-badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  background: rgba(72, 167, 29, 0.09);
  color: var(--fpd-green-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.fpd-action-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.fpd-action-group .btn {
  border-radius: 14px;
}

.fpd-link-box {
  padding: 18px;
  border-radius: 18px;
  background: #f8fbf3;
  border: 1px solid #e4edd7;
}

.fpd-link-box .input-group .form-control,
.fpd-link-box .input-group .btn {
  min-height: 50px;
}

.fpd-link-box .input-group .form-control {
  border-radius: 14px 0 0 14px;
}

.fpd-link-box .input-group .btn {
  border-radius: 0 14px 14px 0;
}

.fpd-empty-state {
  padding: 36px 24px;
  text-align: center;
  color: var(--fpd-muted);
}

.fpd-footer-note {
  padding: 18px 4px 8px;
  color: var(--fpd-muted);
  font-size: 0.86rem;
}

.fpd-gap-sm {
  gap: 10px;
}

@media (max-width: 1199.98px) {
  .fpd-auth-shell {
    max-width: 1040px;
  }

  .fpd-auth-brand,
  .auth-form-light.fpd-auth-panel {
    padding: 36px 32px;
  }

  .fpd-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 991.98px) {
  .fpd-auth-wrapper {
    padding: 20px 14px;
  }

  .fpd-auth-shell {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 24px;
  }

  .fpd-auth-shell::before {
    display: none;
  }

  .fpd-auth-brand,
  .auth-form-light.fpd-auth-panel {
    padding: 30px 24px;
  }

  .fpd-auth-brand::after {
    width: 220px;
    height: 220px;
  }

  .fpd-top-search .form-control {
    min-width: 0;
  }

  body.fpd-admin-dashboard .content-wrapper {
    padding: 20px 16px 24px;
  }
}

@media (max-width: 767.98px) {
  .fpd-auth-shell {
    border-radius: 20px;
  }

  .fpd-auth-brand h1 {
    font-size: 1.8rem;
  }

  .fpd-auth-highlight {
    padding: 14px;
  }

  .fpd-auth-highlight i,
  .fpd-input-wrap {
    border-radius: 16px;
  }

  .fpd-admin-modal .modal-body {
    padding: 28px 22px;
  }

  .fpd-dashboard-hero .card-body,
  .fpd-stat-card .card-body,
  .fpd-admin-surface .card-body,
  .fpd-admin-surface .card-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fpd-hero-actions,
  .fpd-action-group {
    justify-content: stretch;
  }

  .fpd-hero-actions .btn,
  .fpd-action-group .btn {
    width: 100%;
  }

  .fpd-super-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .fpd-auth-wrapper {
    padding: 14px 10px;
  }

  .fpd-auth-brand,
  .auth-form-light.fpd-auth-panel {
    padding: 24px 18px;
  }

  .fpd-auth-form-head .brand-logo {
    width: 88px;
  }

  .fpd-auth-meta {
    align-items: flex-start;
  }

  .fpd-admin-modal__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;
    border-radius: 22px;
  }

  .fpd-dashboard-hero,
  .fpd-stat-card,
  .fpd-admin-surface {
    border-radius: 18px;
  }

  .fpd-dashboard-hero .card-body,
  .fpd-stat-card .card-body,
  .fpd-admin-surface .card-body,
  .fpd-admin-surface .card-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
