/* Result manager pages: compact admin tooling, no modal flow. */
.dashboard-layout {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 172, 238, .14), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(16, 185, 129, .11), transparent 24rem),
    linear-gradient(135deg, #f8fcff 0%, #eef8fc 48%, #f8fbff 100%) !important;
  color: #102033;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dashboard-layout .sidebar {
  width: 258px;
  background:
    linear-gradient(180deg, rgba(7, 27, 53, .98), rgba(5, 45, 76, .98)),
    #071b35 !important;
  border-right: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: 18px 0 55px rgba(7, 27, 53, .16);
}

.dashboard-layout .sidebar-logo {
  padding-bottom: 1.25rem;
}

.dashboard-layout .sidebar-logo img {
  width: 172px;
  height: auto;
  border-radius: 10px;
  padding: .32rem .45rem;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.dashboard-layout .sidebar-menu li a {
  position: relative;
  margin: .18rem .8rem;
  border-radius: 8px;
  color: rgba(226, 232, 240, .82) !important;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.dashboard-layout .sidebar-menu li a:hover,
.dashboard-layout .sidebar-menu li a.active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(0, 172, 238, .22), rgba(16, 185, 129, .18)) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14), 0 12px 28px rgba(0, 0, 0, .18);
  transform: translateX(4px);
}

.dashboard-layout .main-content {
  background: transparent !important;
  padding: clamp(1.25rem, 3vw, 2.25rem) !important;
}

.dashboard-layout h2,
.dashboard-layout h3,
.dashboard-layout h4 {
  letter-spacing: 0;
}

.dashboard-layout .dashboard-tab.active {
  animation: adminFadeUp .28s ease both;
}

.dashboard-layout .stat-cards-grid {
  gap: 1rem;
}

.dashboard-layout .stat-card-dash,
.dashboard-layout .result-panel,
.dashboard-layout .card,
.dashboard-layout .modal {
  border: 1px solid rgba(148, 163, 184, .18) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, .88) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08) !important;
  backdrop-filter: blur(18px);
}

.dashboard-layout .stat-card-dash {
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.dashboard-layout .stat-card-dash::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0 1rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #10b981);
}

.dashboard-layout .stat-card-dash:hover,
.dashboard-layout .result-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(15, 23, 42, .12) !important;
}

.dashboard-layout .data-table {
  border-collapse: separate !important;
  border-spacing: 0;
  border: 1px solid rgba(148, 163, 184, .18);
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
}

.dashboard-layout .data-table th {
  background: linear-gradient(180deg, #f8fdff, #eef8fc) !important;
  color: #0f2942;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.dashboard-layout .data-table td {
  background: rgba(255, 255, 255, .92);
}

.dashboard-layout .data-table tbody tr {
  transition: transform .18s ease, box-shadow .18s ease;
}

.dashboard-layout .data-table tbody tr:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}

.dashboard-layout .result-table th:first-child,
.dashboard-layout .result-table td:first-child {
  width: 58px;
  text-align: center;
  font-weight: 850;
  color: var(--primary);
}

.dashboard-layout .btn-primary,
.dashboard-layout .btn-secondary,
.dashboard-layout .btn-edit,
.dashboard-layout .btn-danger,
.dashboard-layout .btn-sm {
  border-radius: 8px !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, opacity .18s ease;
}

.dashboard-layout .btn-primary {
  border: 0;
  background: linear-gradient(135deg, #00aeef, #0879c4) !important;
  box-shadow: 0 10px 0 #075985, 0 18px 34px rgba(0, 126, 184, .22) !important;
}

.dashboard-layout .btn-secondary,
.dashboard-layout .btn-edit {
  box-shadow: 0 7px 0 rgba(148, 163, 184, .32), 0 14px 26px rgba(15, 23, 42, .08);
}

.dashboard-layout .btn-danger {
  box-shadow: 0 7px 0 rgba(153, 27, 27, .42), 0 14px 24px rgba(239, 68, 68, .16);
}

.dashboard-layout .btn-primary:hover,
.dashboard-layout .btn-secondary:hover,
.dashboard-layout .btn-edit:hover,
.dashboard-layout .btn-danger:hover,
.dashboard-layout .btn-sm:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}

.dashboard-layout .btn-primary:active,
.dashboard-layout .btn-secondary:active,
.dashboard-layout .btn-edit:active,
.dashboard-layout .btn-danger:active,
.dashboard-layout .btn-sm:active {
  transform: translateY(2px);
  box-shadow: 0 5px 12px rgba(15, 23, 42, .12) !important;
}

.dashboard-layout button.is-loading,
.dashboard-layout button:disabled {
  cursor: wait;
  opacity: .74;
  transform: none !important;
  box-shadow: none !important;
}

.dashboard-layout input,
.dashboard-layout select,
.dashboard-layout textarea {
  border-radius: 8px !important;
  border-color: rgba(148, 163, 184, .32) !important;
  background: rgba(255, 255, 255, .92);
}

.dashboard-layout input:focus,
.dashboard-layout select:focus,
.dashboard-layout textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(0, 172, 238, .12);
}

.dashboard-layout .gallery-admin-grid img,
.dashboard-layout .gallery-admin-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes adminFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 920px) {
  .dashboard-layout {
    display: block !important;
  }

  .dashboard-layout .sidebar {
    width: 100% !important;
    min-height: auto;
  }

  .dashboard-layout .sidebar-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    padding: .75rem;
  }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .7rem 1.5rem;
  border-radius: 8px;
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border-light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0, 172, 238, .06);
}

.w-100 {
  width: 100%;
}

.text-danger,
.form-error {
  color: #b91c1c;
  font-weight: 600;
}

.result-hero {
  padding: clamp(4rem, 9vw, 6rem) 0 3rem;
  background:
    linear-gradient(120deg, rgba(0, 172, 238, .12), rgba(16, 185, 129, .08) 48%, rgba(212, 175, 55, .12)),
    #ffffff;
  border-bottom: 1px solid var(--border-light);
}

.result-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 2rem;
  align-items: center;
}

.result-eyebrow {
  margin-bottom: .75rem;
  color: #047857;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.result-hero .hero-subtitle {
  max-width: 720px;
  margin: 0;
}

.result-hero .trust-badges {
  justify-content: flex-start;
}

.result-hero-card {
  min-height: 230px;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, .12);
  background: #fff;
  box-shadow: var(--shadow-lg);
  display: grid;
  align-content: center;
  gap: .5rem;
}

.result-hero-card span {
  width: fit-content;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  color: #047857;
  font-weight: 800;
}

.result-hero-card strong {
  font-size: 2rem;
  color: var(--navy);
}

.result-hero-card p {
  margin: 0;
  color: var(--slate);
  font-weight: 700;
}

.result-page-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.result-inline-message {
  min-height: 0;
  margin-bottom: .75rem;
  border-radius: 8px;
  font-weight: 600;
}

.result-inline-message.success,
.result-inline-message.error {
  padding: .7rem .9rem;
  border: 1px solid transparent;
}

.result-inline-message.success {
  background: rgba(16, 185, 129, .1);
  color: #047857;
  border-color: rgba(16, 185, 129, .22);
}

.result-inline-message.error {
  background: rgba(239, 68, 68, .1);
  color: #b91c1c;
  border-color: rgba(239, 68, 68, .22);
}

.result-muted {
  color: var(--slate);
  margin: 0;
}

.required-base-fields {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid rgba(16, 185, 129, .22);
  background: rgba(16, 185, 129, .08);
  border-radius: 8px;
  margin: .75rem 0 1rem;
}

.required-base-fields strong {
  color: #047857;
  margin-right: .25rem;
}

.required-base-fields span {
  padding: .22rem .55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16, 185, 129, .22);
  color: #065f46;
  font-weight: 700;
  font-size: .84rem;
}

.result-actions,
.result-toolbar,
.result-form-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.result-toolbar {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.result-toolbar select,
.compact-field select {
  min-height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  background: #fff;
  padding: .65rem .8rem;
}

.result-page {
  display: none;
}

.result-page.active {
  display: block;
}

.result-split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, .9fr);
  gap: 1.25rem;
}

.result-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.result-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.category-asset-panel {
  display: grid;
  gap: .75rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 172, 238, .18);
  border-radius: 8px;
  background: #f8fdff;
}

.category-option-panel {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(16, 185, 129, .2);
  border-radius: 8px;
  background: rgba(16, 185, 129, .06);
}

.result-option-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.result-option-head h4 {
  margin: 0 0 .25rem;
}

.result-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .55rem;
}

.result-option-grid label {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-height: 42px;
  padding: .6rem .7rem;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.category-asset-panel h4 {
  margin: 0;
  color: var(--navy);
}

.asset-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.asset-status-list span {
  padding: .24rem .58rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 116, 139, .18);
  background: #fff;
  color: #64748b;
  font-size: .8rem;
  font-weight: 700;
}

.asset-status-list span.uploaded {
  color: #047857;
  border-color: rgba(16, 185, 129, .25);
  background: rgba(16, 185, 129, .09);
}

.upload-zone.is-dragover {
  border-color: var(--primary);
  background: rgba(0, 172, 238, .08);
}

.result-back-btn {
  margin-bottom: 1rem;
}

.segmented-control {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: min(100%, 420px);
  padding: 4px;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.segmented-control button {
  min-height: 40px;
  border-radius: 6px;
  color: var(--slate);
  font-weight: 600;
  background: transparent;
}

.segmented-control button.active {
  color: #fff;
  background: var(--primary);
}

.builder-field-setup {
  border-top: 1px solid var(--border-light);
  margin-top: 1rem;
  padding-top: 1rem;
}

.result-chip-list,
.result-category-list {
  display: grid;
  gap: .65rem;
  margin-top: 1rem;
}

.result-chip,
.result-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
}

.result-chip small,
.result-category-item small {
  display: block;
  color: var(--slate);
}

.result-chip-actions,
.result-row-actions {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
}

.result-dynamic-section {
  margin-top: .5rem;
}

.publish-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: .35rem 0 1rem;
  font-weight: 600;
}

.result-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.result-status.published {
  background: rgba(16, 185, 129, .12);
  color: #047857;
}

.result-status.draft {
  background: rgba(100, 116, 139, .12);
  color: #475569;
}

.result-table td {
  vertical-align: middle;
}

.ai-question-table td {
  vertical-align: top;
  min-width: 120px;
}

.ai-question-table td:nth-child(4),
.ai-question-table td:nth-child(5) {
  min-width: 260px;
}

.ai-provider {
  display: inline-flex;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(0, 172, 238, .1);
  color: var(--primary);
  font-weight: 800;
  text-transform: capitalize;
}

.result-portal-search {
  max-width: 760px;
  margin: 0 auto;
}

.result-search-card {
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.result-form .form-group {
  min-width: 0;
}

.result-form label {
  color: var(--navy);
  font-weight: 800;
}

.result-form .form-control {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #fff;
}

.result-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 172, 238, .12);
}

.result-portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.page-results #marksheetSection .container {
  width: min(100% - 1.5rem, 940px);
}

body.page-results .marksheet-card {
  max-width: 100%;
  overflow: hidden;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(0, 172, 238, .85), rgba(16, 185, 129, .75), rgba(212, 175, 55, .7)) border-box;
  border: 2px solid transparent;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(15, 23, 42, .14);
  padding: clamp(1rem, 3vw, 2rem);
}

body.page-results .marksheet-header {
  display: grid;
  justify-items: center;
  gap: .55rem;
  margin-bottom: clamp(1.1rem, 3vw, 2rem);
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(0, 172, 238, .3);
}

body.page-results .marksheet-logo {
  display: block;
  width: clamp(58px, 12vw, 80px);
  height: clamp(58px, 12vw, 80px);
  object-fit: contain;
  margin: 0 auto .25rem;
}

body.page-results .marksheet-header h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.18;
  text-align: center;
}

body.page-results .marksheet-header h3 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  text-align: center;
}

body.page-results .verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: .35rem .85rem;
  border: 1px solid rgba(16, 185, 129, .28);
  border-radius: 999px;
  background: rgba(16, 185, 129, .1);
  color: #047857;
  font-weight: 800;
  font-size: .9rem;
  text-align: center;
}

body.page-results .marksheet-profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

body.page-results .student-photo {
  width: clamp(96px, 18vw, 126px);
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, .16);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .12);
  background: #f8fafc;
}

body.page-results .marksheet-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  min-width: 0;
}

body.page-results .marksheet-details > div {
  min-width: 0;
  padding: .72rem .8rem;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--slate);
  overflow-wrap: anywhere;
  line-height: 1.45;
}

body.page-results .marksheet-details strong {
  display: block;
  margin-bottom: .18rem;
  color: var(--navy);
  font-size: .78rem;
  text-transform: uppercase;
}

body.page-results .marksheet-details span {
  display: block;
  min-width: 0;
  color: #111827;
  font-weight: 700;
}

body.page-results .marksheet-custom-fields {
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

body.page-results .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

body.page-results .marksheet-table {
  min-width: 560px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  overflow: hidden;
}

body.page-results .marksheet-table th,
body.page-results .marksheet-table td {
  padding: .8rem;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  overflow-wrap: anywhere;
}

body.page-results .marksheet-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
  padding: .85rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
}

body.page-results .marksheet-summary .text-center {
  min-width: 0;
  padding: .85rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
}

body.page-results .summary-label {
  color: var(--slate);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.page-results .summary-value {
  display: block;
  min-width: 0;
  color: var(--primary);
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

body.page-results #ms-grade {
  color: var(--navy);
}

body.page-results #ms-remarks {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.45;
}

body.page-results .marksheet-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

body.page-results .result-download-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  margin-top: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, .1);
  border-radius: 8px;
  background: #f8fafc;
}

body.page-results .result-download-panel strong {
  min-width: 0;
  color: var(--navy);
}

body.page-results .result-pdf-frame {
  grid-column: 1 / -1;
  width: 100%;
  min-height: min(72vh, 680px);
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background: #fff;
}

.print-verified-seal {
  display: none;
  margin: 1rem auto 0;
  width: fit-content;
  padding: .45rem 1rem;
  border: 2px solid #047857;
  border-radius: 8px;
  color: #047857;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .result-hero-grid {
    grid-template-columns: 1fr;
  }

  .result-page-head,
  .result-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .result-actions {
    width: 100%;
  }

  .result-actions > *,
  .result-form-actions > * {
    flex: 1;
  }

  .result-split,
  .result-portal-grid {
    grid-template-columns: 1fr;
  }

  body.page-results .marksheet-profile,
  body.page-results .marksheet-details {
    grid-template-columns: 1fr;
  }

  body.page-results .student-photo {
    justify-self: center;
  }

  body.page-results .marksheet-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-results .result-download-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.page-results .marksheet-card {
    padding: .9rem;
  }

  body.page-results .marksheet-summary {
    grid-template-columns: 1fr;
  }

  body.page-results .marksheet-actions > *,
  body.page-results .result-download-panel .btn-secondary {
    width: 100%;
  }

  body.page-results .marksheet-table {
    min-width: 520px;
  }
}

@media print {
  body.page-results .navbar,
  body.page-results section:not(#marksheetSection),
  body.page-results .result-hero,
  body.page-results #resultFormSection,
  body.page-results .feature-grid,
  body.page-results .faq-list,
  body.page-results .footer,
  body.page-results .ai-floating-widget,
  body.page-results .whatsapp-floating,
  body.page-results .marksheet-actions,
  body.page-results #pdfPanel {
    display: none !important;
  }

  body.page-results {
    background: #fff !important;
  }

  body.page-results #marksheetSection {
    display: block !important;
    padding: 0 !important;
  }

  body.page-results .marksheet-card {
    border: 2px solid #047857 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 1.2rem !important;
  }

  body.page-results .print-verified-seal {
    display: block;
  }

  body.page-results .verified-badge {
    display: inline-block !important;
    border: 1px solid #047857;
  }
}
