* {
  box-sizing: border-box;
}

:root {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #172033;
  background: #f3f5f8;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
  padding: 32px 20px;
}

.card {
  width: min(900px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 18px 50px rgba(23,32,51,.10);
}

.brand-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.logo-placeholder {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #f3f5f8;
}

.brand-name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #526071;
}

h1 {
  margin: 0;
  font-size: clamp(32px,5vw,46px);
  line-height: 1.1;
}

.intro {
  font-size: 22px;
  line-height: 1.45;
  margin: 24px 0 32px;
}

.search-box input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #cfd6df;
  font-size: 18px;
}

h2 {
  margin: 36px 0 18px;
  font-size: 28px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 18px;
}

.category {
  display: block;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e0e5ec;
  background: #fff;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.category:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(23,32,51,.12);
}

.category h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.category p {
  margin: 0;
  line-height: 1.6;
  color: #526071;
}

.article-content {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.7;
  color: #263449;
}

.article-content h2,
.article-content h3 {
  margin-top: 32px;
}

.article-content a {
  color: #172033;
  font-weight: 700;
}

.ticket-box {
  margin-top: 42px;
  padding: 28px;
  border-radius: 18px;
  background: #f3f5f8;
}

.ticket-box button {
  margin-top: 14px;
  margin-right: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 12px;
  background: #172033;
  color: #fff;
  font-weight: 700;
}

@media (max-width:600px) {
  .card {
    padding: 26px 20px;
  }

  h1 {
    font-size: 34px;
  }

  .intro {
    font-size: 20px;
  }
}

.breadcrumb {
  margin-bottom: 28px;
  font-weight: 700;
}

.article-header h1 {
  max-width: 760px;
  font-size: clamp(30px,4vw,42px);
  line-height: 1.15;
}

.article-summary {
  margin-top: 22px;
  font-size: 22px;
  line-height: 1.55;
  color: #526071;
}

.article-content {
  margin-top: 36px;
  max-width: 760px;
}

.article-content p {
  margin: 0 0 24px;
}

.feedback-box {
  margin-top: 48px;
  padding: 24px;
  border-radius: 18px;
  background: #f3f5f8;
}

.feedback-box h2 {
  margin-top: 0;
  font-size: 22px;
}

.feedback-box button {
  margin-right: 10px;
}

.article-header {
  max-width: 720px;
}

.article-header h1 {
  font-size: clamp(32px,4vw,44px);
  line-height: 1.15;
  margin-bottom: 24px;
}

.article-summary {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.55;
  color: #526071;
}

.article-content {
  max-width: 700px;
  margin-top: 34px;
  line-height: 1.7;
}

.article-content p {
  margin-bottom: 22px;
}

.feedback-box {
  margin-top: 44px;
  padding: 28px;
  border-radius: 18px;
  background: #f3f5f8;
}

.feedback-box h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.feedback-box button {
  margin-right: 10px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  background: #172033;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

/* Article typography refinement */

.article-header {
  max-width: 760px;
}

.article-header h1 {
  font-size: clamp(34px,4vw,42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.article-summary {
  font-size: 20px;
  line-height: 1.55;
  color: #526071;
  margin-bottom: 30px;
}

.article-content {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.65;
  color: #263449;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content a {
  font-weight: 700;
}

.feedback-box {
  max-width: 720px;
  margin-top: 36px;
}

.feedback-box h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* Article final sizing refinement */

.article-header,
.article-content {
  max-width: 680px;
}

.article-header h1 {
  font-size: clamp(28px,3.5vw,38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

.article-summary {
  font-size: 18px;
  line-height: 1.55;
  color: #526071;
  margin: 0 0 28px;
}

.article-content {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.65;
}

.article-content p {
  margin: 0 0 18px;
}

.feedback-box {
  max-width: 680px;
  margin-top: 32px;
  padding: 22px;
}

.feedback-box h2 {
  font-size: 21px;
  margin-bottom: 14px;
}

.feedback-box {
  max-width: none;
  width: 100%;
  margin-top: 36px;
  padding: 28px;
}

.article-content {
  margin-top: 20px;
}

.article-content p {
  margin-bottom: 16px;
}

/* Simplified article layout */

.article-header {
  margin-bottom: 28px;
}

.article-header h1 {
  font-size: clamp(34px,4vw,44px);
  line-height: 1.12;
  margin: 0;
}

.article-content {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
}

.article-content p {
  margin: 0 0 18px;
}

.feedback-box {
  width: 100%;
  max-width: none;
  margin-top: 36px;
}

.article-content {
  max-width: none;
  color: #172033;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content a {
  color: #172033;
  font-weight: 700;
}

.article-header {
  margin-bottom: 20px;
}

.article-header h1 {
  margin: 0;
}

.article-content {
  width: 100%;
  max-width: none;
  color: #172033;
  font-size: 17px;
  line-height: 1.65;
}

.article-content p {
  display: none;
}

.feedback-box {
  width: 100%;
}

.article-header,
.article-content {
  max-width: none;
  width: 100%;
}

.article-header {
  margin-bottom: 36px;
}

.article-content {
  color: #172033;
  font-size: 17px;
  line-height: 1.65;
}

.article-header h1 {
  margin: 0 0 24px;
}

.article-header {
  margin-bottom: 0;
}

.article-content {
  margin-top: 24px;
  width: 100%;
  max-width: none;
}

.article-header h1 {
  margin: 0 0 24px;
}

.article-header {
  margin-bottom: 0;
}

.article-content,
.article-content p {
  width: 100%;
  max-width: none;
  color: #172033;
  font-size: 17px;
  line-height: 1.65;
}

.article-content a {
  color: #172033;
  text-decoration: underline;
  font-weight: 700;
}

.article-header h1 {
  margin-bottom: 24px;
}

.article-content {
  color: #172033;
  font-size: 17px;
  line-height: 1.65;
}

.article-content a {
  color: #172033;
  text-decoration: underline;
  font-weight: 700;
}

/* Support request form */



.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 24px;
}

.ticket-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #172033;
}

.ticket-form input,
.ticket-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #cfd6df;
  background: #ffffff;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #172033;
}

.ticket-form input::placeholder,
.ticket-form textarea::placeholder {
  color: #a6a6a6;
  font-weight: 600;
}

.ticket-form textarea {
  min-height: 150px;
  resize: vertical;
}

.ticket-form button {
  align-self: flex-start;
  margin-top: 2px;
  padding: 12px 24px;
  border: 0;
  border-radius: 12px;
  background: #172033;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}


/* Ticket form refinement */
.ticket-form textarea {
  min-height: 180px;
}

.ticket-form button {
  margin-top: 24px;
}

.ticket-success {
  margin-top: 24px;
  padding: 18px 24px;
  border-radius: 24px;
  background: #f1f3f7;
  color: #172033;
  font-size: 18px;
  font-weight: 600;
}

.ticket-success {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: #f3f5f8;
  color: #172033;
  font-size: 20px;
  font-weight: 800;
}

.admin-card {
  max-width: 1000px;
}

.admin-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid #e0e5ec;
  border-radius: 14px;
  text-decoration: none;
  color: #172033;
}

.admin-ticket-row:hover {
  box-shadow: 0 8px 22px rgba(23,32,51,.08);
}

.admin-ticket-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #526071;
  font-size: 14px;
}

.admin-ticket-brand {
  color: #526071;
}

.admin-ticket-detail {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: #f3f5f8;
}

.admin-ticket-detail p {
  margin: 0 0 18px;
}

.admin-ticket-detail p:last-child {
  margin-bottom: 0;
}

.admin-ticket-message {
  margin-top: 28px;
}

@media (max-width:600px) {
  .admin-ticket-row {
    flex-direction: column;
  }

  .admin-ticket-meta {
    flex-wrap: wrap;
  }
}

.admin-ticket-reply {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid #e0e5ec;
}

.admin-ticket-reply textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 180px;
  padding: 16px;
  border: 1px solid #cfd6df;
  border-radius: 12px;
  resize: vertical;
  font: inherit;
  color: #172033;
}

.admin-reply-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.admin-reply-actions select {
  padding: 12px 14px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  background: #ffffff;
  color: #172033;
  font: inherit;
}

.admin-reply-actions button {
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  background: #172033;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

#reply-result {
  margin-top: 14px;
  font-weight: 700;
}

@media (max-width: 600px) {
  .admin-reply-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.admin-status-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #e0e5ec;
  border-radius: 13px;
}

.admin-status-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.admin-status-main div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.admin-status-main small {
  color: #7a8797;
}

.admin-status-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-status-form {
  display: grid;
  gap: 16px;
}

.admin-status-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 700;
}

.admin-status-form input[type="text"],
.admin-status-form input:not([type]) {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd6df;
  border-radius: 11px;
  font: inherit;
}

.admin-check-row {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
}

.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 650px) {
  .admin-status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-status-actions {
    width: 100%;
    justify-content: space-between;
  }

  .admin-form-actions {
    flex-direction: column;
  }

  .admin-form-actions button {
    width: 100%;
  }
}

.admin-section-kicker {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #687689;
}

.admin-status-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e1e6ed;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(20,32,52,.04);
}

.admin-status-order {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-order-button {
  width: 34px;
  height: 30px;
  border: 1px solid #d6dce5;
  border-radius: 8px;
  background: #ffffff;
  color: #243248;
  font-weight: 800;
  cursor: pointer;
}

.status-order-button:hover:not(:disabled) {
  background: #f1f4f8;
}

.status-order-button:disabled {
  opacity: .35;
  cursor: default;
}

.admin-status-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-status-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.admin-status-state.is-active {
  background: #e8f7ef;
  color: #1f704d;
}

.admin-status-state.is-inactive {
  background: #eef1f5;
  color: #647184;
}

#status-editor {
  max-width: 760px;
}

.admin-status-form {
  max-width: 100%;
}

@media (max-width: 850px) {
  .admin-status-row {
    grid-template-columns: 44px 1fr;
  }

  .admin-status-actions {
    grid-column: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .admin-status-row {
    grid-template-columns: 1fr;
  }

  .admin-status-order {
    flex-direction: row;
  }

  .admin-status-actions {
    grid-column: auto;
  }
}

/* =========================================================
   SECURITYPOINT HELPDESK — AUTHORITATIVE PUBLIC THEME
   Mirrors the established Admin visual language.
   ========================================================= */

:root {
  --helpdesk-navy: #073b67;
  --helpdesk-navy-2: #0b4f86;
  --helpdesk-red: #b4121b;
  --helpdesk-ink: #17212b;
  --helpdesk-muted: #65727d;
  --helpdesk-bg: #f3f6f8;
  --helpdesk-surface: #ffffff;
  --helpdesk-line: #dce3e8;
  --helpdesk-soft: #eef4f8;
  --helpdesk-shadow: 0 8px 26px rgba(7,59,103,.06);
  --helpdesk-radius: 12px;
}

/* Base */
html {
  background: var(--helpdesk-bg);
}

body {
  margin: 0;
  background: var(--helpdesk-bg);
  color: var(--helpdesk-ink);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;
  line-height: 1.5;
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

a {
  color: var(--helpdesk-navy);
}

a:hover {
  color: var(--helpdesk-navy-2);
}

/* Main content shell */
.site-shell {
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

/* Public header */
.brand-header {
  background: #fff;
  border-bottom: 1px solid var(--helpdesk-line);
}

.brand-header .site-shell,
.brand-header__inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 170px minmax(0,1fr);
  align-items: center;
  gap: 22px;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* Dedicated logo area for future real logo */
.brand-logo-slot,
.public-logo-slot {
  width: 170px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--helpdesk-line);
  border-radius: 10px;
  background: #f8fafc;
  color: #8a98a6;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-logo-slot span,
.public-logo-slot span {
  opacity: .75;
}

/* Headers / section kickers */
.eyebrow,
.kicker,
.section-kicker,
.brand-kicker {
  margin: 0 0 5px;
  color: var(--helpdesk-red);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  color: var(--helpdesk-navy);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    Helvetica,
    sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--helpdesk-muted);
}

/* Reusable panels/cards */
.panel,
.card,
.content-panel,
.help-panel,
.article-panel,
.form-panel,
.brand-panel {
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid var(--helpdesk-line);
  border-radius: var(--helpdesk-radius);
  background: var(--helpdesk-surface);
  box-shadow: var(--helpdesk-shadow);
}

/* Hero blocks */
.page-hero,
.help-hero,
.article-header {
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid var(--helpdesk-line);
  border-radius: var(--helpdesk-radius);
  background: #fff;
  box-shadow: var(--helpdesk-shadow);
}

.page-hero h1,
.help-hero h1,
.article-header h1 {
  margin-top: 0;
}

/* Navigation */
.public-nav,
.main-nav,
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 18px 0 22px;
  padding: 5px;
  border: 1px solid var(--helpdesk-line);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--helpdesk-shadow);
}

.public-nav a,
.main-nav a,
.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 7px;
  color: var(--helpdesk-navy);
  font-weight: 800;
  text-decoration: none;
}

.public-nav a:hover,
.main-nav a:hover,
.site-nav a:hover {
  background: var(--helpdesk-soft);
}

/* Forms */
.ticket-form,
.auth-form,
.support-form {
  display: grid;
  gap: 15px;
}

.ticket-form label,
.auth-form label,
.support-form label {
  display: block;
  color: var(--helpdesk-navy);
  font-size: .88rem;
  font-weight: 800;
}

.ticket-form input,
.ticket-form textarea,
.ticket-form select,
.auth-form input,
.auth-form textarea,
.auth-form select,
.support-form input,
.support-form textarea,
.support-form select,
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  width: 100%;
  min-height: 46px;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid #b8c5cf;
  border-radius: 8px;
  background: #fff;
  color: var(--helpdesk-ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--helpdesk-navy-2);
  box-shadow: 0 0 0 3px rgba(11,79,134,.15);
}

/* Buttons */
button,
.button,
.ticket-form button,
.auth-form button,
.support-form button {
  min-height: 44px;
  padding: 9px 17px;
  border: 2px solid var(--helpdesk-navy);
  border-radius: 8px;
  background: var(--helpdesk-navy);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

button:hover,
.button:hover,
.ticket-form button:hover,
.auth-form button:hover,
.support-form button:hover {
  background: var(--helpdesk-navy-2);
  border-color: var(--helpdesk-navy-2);
}

.button--secondary,
.secondary-button {
  background: #fff;
  color: var(--helpdesk-navy);
  border: 1px solid #b8c5cf;
}

/* Help categories / solution cards */
.category,
.category-card,
.help-topic,
.solution-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--helpdesk-line);
  border-radius: var(--helpdesk-radius);
  background: #fff;
  box-shadow: var(--helpdesk-shadow);
  color: var(--helpdesk-ink);
  text-decoration: none;
}

.category:hover,
.category-card:hover,
.help-topic:hover,
.solution-card:hover {
  border-color: #9eb6c8;
  box-shadow: 0 12px 30px rgba(7,59,103,.1);
}

.category strong,
.category-card h2,
.help-topic h2,
.solution-card h2 {
  color: var(--helpdesk-navy);
}

.category-grid,
.help-grid,
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
}

/* Breadcrumbs */
.breadcrumb {
  margin: 0 0 14px;
  color: var(--helpdesk-muted);
  font-size: .9rem;
}

.breadcrumb a {
  font-weight: 700;
  text-decoration: none;
}

/* Search */
.search-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 10px;
  margin-bottom: 18px;
}

/* Article content */
.article-content,
.help-content {
  padding: 24px;
  border: 1px solid var(--helpdesk-line);
  border-radius: var(--helpdesk-radius);
  background: #fff;
  box-shadow: var(--helpdesk-shadow);
}

.article-content h2,
.article-content h3,
.help-content h2,
.help-content h3 {
  margin-top: 28px;
}

.article-content img,
.help-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Ticket success / status messages */
.ticket-success,
.status-panel,
.notice,
.alert,
.message {
  padding: 14px 16px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--helpdesk-line);
}

.ticket-success {
  color: #176338;
  background: #e6f5ec;
  border-color: #b9dec6;
}

/* Footer */
footer,
.site-footer {
  margin-top: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--helpdesk-line);
  color: var(--helpdesk-muted);
}

/* Mobile / PWA */
@media (max-width: 900px) {
  .category-grid,
  .help-grid,
  .solution-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .brand-header .site-shell,
  .brand-header__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand-logo-slot,
  .public-logo-slot {
    width: 140px;
    height: 52px;
  }

  .public-nav,
  .main-nav,
  .site-nav {
    margin-top: 14px;
    margin-bottom: 16px;
  }

  .category-grid,
  .help-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .card,
  .content-panel,
  .help-panel,
  .article-panel,
  .form-panel,
  .brand-panel,
  .page-hero,
  .help-hero,
  .article-header,
  .article-content,
  .help-content {
    padding: 17px;
  }

  .search-form {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   PUBLIC HELPDESK SHELL — KB / HELP
   ========================================================= */

.public-header {
  background:#fff;
  border-bottom:1px solid var(--helpdesk-line);
}

.public-header__inner {
  min-height:96px;
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding-top:16px;
  padding-bottom:16px;
}

.public-main {
  padding-top:24px;
  padding-bottom:48px;
}

.public-section-heading {
  margin:22px 0 14px;
}

.helpdesk-search {
  margin-top:16px;
}

.helpdesk-search input {
  min-height:52px;
  margin:0;
  font-size:1rem;
}

.helpdesk-card-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.helpdesk-card {
  min-height:145px;
  justify-content:flex-start;
}

.article-panel {
  padding:22px;
}

.helpdesk-feedback {
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--helpdesk-line);
}

.feedback-box button {
  margin-right:8px;
}

@media (max-width:900px) {
  .helpdesk-card-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px) {
  .public-header__inner {
    grid-template-columns:1fr;
  }

  .public-main {
    padding-top:16px;
  }

  .helpdesk-card-grid {
    grid-template-columns:1fr;
  }

  .article-panel {
    padding:17px;
  }
}


/* =========================================================
   HELP CENTRE — CATEGORY REFERENCE LAYOUT
   ========================================================= */

.help-centre-page {
  background:#fff;
}

.public-site-header {
  background:#fff;
  border-bottom:1px solid #dce3e8;
}

.public-site-header__inner {
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding-top:10px;
  padding-bottom:10px;
}

.helpdesk-brand {
  display:flex;
  align-items:center;
  gap:20px;
  color:#073b67;
  text-decoration:none;
}

.helpdesk-brand__text {
  display:flex;
  flex-direction:column;
  gap:2px;
}

.helpdesk-brand__text strong {
  color:#073b67;
  font-size:2rem;
  line-height:1;
  font-weight:850;
}

.public-site-nav {
  display:flex;
  align-items:stretch;
  gap:8px;
}

.public-site-nav a {
  display:inline-flex;
  min-height:42px;
  align-items:center;
  padding:0 14px;
  border-bottom:3px solid transparent;
  color:#073b67;
  font-weight:800;
  text-decoration:none;
}

.public-site-nav a:hover,
.public-site-nav a.is-active {
  border-bottom-color:#b4121b;
}

.help-search-hero {
  background:#073b67;
  color:#fff;
}

.help-search-hero__inner {
  padding-top:34px;
  padding-bottom:34px;
  text-align:center;
}

.help-search-hero .section-kicker {
  color:#ff3a45;
}

.help-search-hero h1 {
  margin:4px 0 8px;
  color:#fff;
  font-size:clamp(2rem,4vw,3rem);
}

.help-search-hero p:not(.section-kicker) {
  margin:0 0 20px;
  color:#dfeaf3;
  font-size:1rem;
}

.help-search-form {
  width:min(700px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
}

.help-search-form input {
  min-height:52px;
  margin:0;
  border:0;
  border-radius:8px;
  padding:0 16px;
  font-size:1rem;
}

.help-search-form button {
  min-height:52px;
  border:0;
  border-radius:8px;
  background:#b4121b;
  color:#fff;
  padding:0 22px;
}

.help-centre-main {
  padding-top:22px;
  padding-bottom:50px;
}

.help-breadcrumb {
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:20px;
  color:#65727d;
  font-size:.9rem;
}

.help-breadcrumb a {
  color:#073b67;
  text-decoration:none;
  font-weight:700;
}

.help-centre-layout {
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:32px;
  align-items:start;
}

.help-category-sidebar {
  overflow:hidden;
  border:1px solid #dce3e8;
  border-radius:10px;
  background:#fff;
}

.help-category-sidebar__heading {
  padding:16px 18px;
  color:#073b67;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.07em;
}

.help-category-link {
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:18px;
  border-top:1px solid #e5eaee;
  color:#073b67;
  text-decoration:none;
}

.help-category-link:hover {
  background:#f5f8fa;
}

.help-category-link.is-active {
  border-left:4px solid #b4121b;
  padding-left:14px;
  background:#f5f8fa;
}

.help-category-link strong {
  display:block;
  margin-bottom:3px;
}

.help-category-link small {
  display:block;
  color:#65727d;
  line-height:1.4;
}

.help-category-content {
  min-width:0;
}

.help-category-heading {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:22px;
}

.help-category-heading h2 {
  margin:0 0 6px;
}

.help-category-heading p {
  margin:0;
}

.help-view-all {
  color:#b4121b;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.help-article-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.help-article-card {
  min-height:175px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  grid-template-rows:auto 1fr auto;
  column-gap:14px;
  padding:20px;
  border:1px solid #dce3e8;
  border-radius:10px;
  background:#fff;
  color:#073b67;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(7,59,103,.04);
}

.help-article-card:hover {
  border-color:#9eb6c8;
  box-shadow:0 10px 26px rgba(7,59,103,.09);
}

.help-article-card__icon {
  grid-row:1 / span 2;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid #b4121b;
  border-radius:8px;
  color:#b4121b;
  font-weight:900;
}

.help-article-card__body h3 {
  margin:0 0 8px;
  color:#073b67;
  font-size:1rem;
  line-height:1.25;
}

.help-article-card__body p {
  margin:0;
  color:#65727d;
  line-height:1.5;
}

.help-article-card__arrow {
  grid-column:2;
  justify-self:end;
  color:#b4121b;
  font-size:1.2rem;
  font-weight:900;
}

.help-still-need {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:24px;
  padding:22px;
  border:1px solid #dce3e8;
  border-radius:10px;
  background:#f3f6f8;
}

.help-still-need h2 {
  margin:0 0 5px;
}

.help-still-need p {
  margin:0;
}

.help-ticket-button {
  display:inline-flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:8px;
  background:#b4121b;
  color:#fff;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

@media (max-width:900px) {
  .help-centre-layout {
    grid-template-columns:220px minmax(0,1fr);
    gap:20px;
  }

  .help-article-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:700px) {
  .public-site-header__inner {
    align-items:flex-start;
    flex-direction:column;
  }

  .public-site-nav {
    width:100%;
    overflow-x:auto;
  }

  .help-centre-layout {
    grid-template-columns:1fr;
  }

  .help-category-sidebar {
    display:none;
  }

  .help-category-heading {
    align-items:flex-start;
    flex-direction:column;
  }

  .help-article-grid {
    grid-template-columns:1fr;
  }

  .help-still-need {
    align-items:flex-start;
    flex-direction:column;
  }

  .help-ticket-button {
    width:100%;
  }
}

@media (max-width:560px) {
  .help-search-form {
    grid-template-columns:1fr;
  }

  .help-search-form button {
    width:100%;
  }

  .helpdesk-brand__text strong {
    font-size:1.7rem;
  }
}

/* =========================================================
   HELP CENTRE — COMPACT ARTICLE CARDS
   ========================================================= */

.help-article-grid {
  align-items: stretch;
}

.help-article-card {
  min-height: 132px;
  padding: 16px 17px;
  grid-template-columns: auto minmax(0,1fr);
}

.help-article-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.help-article-card__body h3 {
  margin: 0 0 6px;
  font-size: .98rem;
  line-height: 1.25;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.help-article-card__body p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.42;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.help-article-card__arrow {
  font-size: 1rem;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .help-article-card {
    min-height: 126px;
  }
}

@media (max-width: 700px) {
  .help-article-card {
    min-height: 118px;
  }
}

/* Compact Help Centre cards */
.help-category-content {
  padding-top: 0;
}

.help-article-grid {
  margin-top: 0;
}

.help-article-card {
  min-height: 118px;
  padding: 15px 16px;
}

.help-article-card__body h3 {
  margin: 0 0 5px;
  font-size: .96rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.help-article-card__body p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.help-article-card__arrow {
  margin-top: 4px;
}


/* Support request uses the same Help Centre shell */
.support-form-panel {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 24px;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(7,59,103,.06);
}

.support-form-panel h2 {
  margin: 0 0 6px;
}

.support-form-panel > p:not(.section-kicker) {
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .support-form-panel {
    padding: 17px;
  }
}

/* Support page — full-width content panel */
.support-form-panel {
  width: 100%;
  margin: 0;
  padding: 28px 30px;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(7,59,103,.06);
}

.support-form-panel .ticket-form {
  width: 100%;
}

.support-form-panel textarea {
  min-height: 180px;
}

@media (max-width:640px) {
  .support-form-panel {
    padding: 18px;
  }

  .support-form-panel textarea {
    min-height: 150px;
  }
}

/* KB landing — use the same public Help Centre shell */
.help-category-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.help-category-card {
  display:flex;
  flex-direction:column;
  gap:8px;
  min-height:145px;
  padding:19px;
  border:1px solid #dce3e8;
  border-radius:10px;
  background:#fff;
  box-shadow:0 6px 20px rgba(7,59,103,.04);
  color:#073b67;
  text-decoration:none;
}

.help-category-card:hover {
  border-color:#9eb6c8;
  box-shadow:0 10px 26px rgba(7,59,103,.09);
}

.help-category-card h3 {
  margin:0;
  color:#073b67;
}

.help-category-card p {
  margin:0;
  color:#65727d;
}

.help-category-card span {
  margin-top:auto;
  color:#b4121b;
  font-weight:800;
}

.help-back-link {
  margin-top:20px;
}

@media (max-width:900px) {
  .help-category-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:640px) {
  .help-category-grid {
    grid-template-columns:1fr;
  }
}

/* Help Centre live search */
.help-search-results {
  padding-top: 22px;
  padding-bottom: 4px;
}

.help-search-results__heading {
  margin-bottom: 14px;
}

.help-search-results__heading h2 {
  margin: 0;
}

.help-search-empty,
.help-search-loading {
  padding: 18px 20px;
  border: 1px solid #dce3e8;
  border-radius: 10px;
  background: #fff;
  color: #65727d;
}

.help-search-empty {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.help-search-empty strong {
  color: #073b67;
}

.help-search-results .help-article-grid {
  margin-top: 0;
}

/* =========================================================
   HELP ARTICLE — APPROVED PUBLIC SHELL
   ========================================================= */

.help-article-page {
  padding: 28px 30px;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(7,59,103,.06);
}

.help-article-page h2 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.16;
}

.help-article-page__summary {
  margin: 0 0 22px;
  font-size: 1rem;
  color: #65727d;
}

.help-article-page__content {
  color: #42586b;
  font-size: 1rem;
  line-height: 1.7;
}

.help-article-page__content p {
  margin: 0 0 16px;
}

.help-article-page__content a {
  color: #073b67;
  font-weight: 700;
}

.help-article-feedback {
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid #dce3e8;
  border-radius: 10px;
  background: #f3f6f8;
}

.help-article-feedback h3 {
  margin: 0 0 12px;
}

.help-feedback-buttons {
  display: flex;
  gap: 8px;
}

.help-feedback-buttons button {
  min-width: 72px;
}

@media (max-width: 640px) {
  .help-article-page {
    padding: 18px;
  }

  .help-article-page__content {
    font-size: .96rem;
  }

  .help-article-feedback {
    padding: 18px;
  }
}

/* SUPPORT BRAND COLOURS — Bulldog / AlarmSIMCard
   Public customer-facing pages inherit their colour from brand context. */

:root {
  --support-brand-blue: #0b4f86;
  --support-brand-blue-dark: #073b67;
}

body[data-brand="brand_bulldog"] {
  --support-brand-blue: #0b4f86;
  --support-brand-blue-dark: #073b67;
}

body[data-brand="brand_alarmsimcard"] {
  --support-brand-blue: #220075;
  --support-brand-blue-dark: #220075;
}

/* Public support primary brand surfaces */
body[data-brand] .help-search-hero,
body[data-brand] .help-centre-search-hero,
body[data-brand] .help-search-panel {
  background-color: var(--support-brand-blue);
}

body[data-brand] .primary-button,
body[data-brand] button.primary-button,
body[data-brand] .help-search-button,
body[data-brand] .help-centre-search button,
body[data-brand] .help-centre-hero__search button {
  background-color: var(--support-brand-blue);
  border-color: var(--support-brand-blue);
  color: #ffffff;
}

body[data-brand] .brand-kicker,
body[data-brand] .helpdesk-brand__text strong,
body[data-brand] .help-category-content h2,
body[data-brand] .help-article-page h2,
body[data-brand] .help-article-card h3,
body[data-brand] .section-heading h2 {
  color: var(--support-brand-blue-dark);
}

body[data-brand] .help-category-link.is-active,
body[data-brand] .help-category-link:hover,
body[data-brand] .help-category-link:focus-visible {
  border-color: var(--support-brand-blue);
  color: var(--support-brand-blue-dark);
}

body[data-brand] a:focus-visible,
body[data-brand] button:focus-visible,
body[data-brand] input:focus,
body[data-brand] textarea:focus,
body[data-brand] select:focus {
  border-color: var(--support-brand-blue);
}

/* PUBLIC BRAND LOGOS — IMAGE ONLY, NO PLACEMENT BOX */
.public-logo-slot {
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  border-radius:0 !important;
  padding:0 !important;
  min-width:0 !important;
}

.public-logo-slot > span {
  display:none !important;
}

.public-brand-logo-image {
  display:block;
  width:auto;
  max-width:210px;
  max-height:58px;
  object-fit:contain;
}

/* CUSTOMER MULTI-BRAND IDENTIFICATION */
.admin-customer-name-with-brands,
.admin-customer-brand-icons {
  display:inline-flex;
  align-items:center;
}

.admin-customer-name-with-brands {
  gap:8px;
}

.admin-customer-brand-icons {
  gap:4px;
}

.admin-customer-brand-icon {
  width:22px;
  height:22px;
  object-fit:contain;
  flex:0 0 22px;
  border-radius:4px;
}


/* CUSTOMER ACCOUNT PORTAL V1 */

.customer-account-main {
  padding-top:22px;
  padding-bottom:48px;
}

.customer-account-auth,
.customer-account-dashboard {
  margin-top:18px;
}

.customer-account-intro {
  max-width:680px;
  margin-bottom:18px;
}

.customer-account-intro h2,
.customer-account-welcome h2,
.customer-account-section-heading h3 {
  margin:4px 0 6px;
}

.customer-auth-grid {
  display:grid;
  grid-template-columns:
    repeat(2,minmax(0,1fr));
  gap:20px;
}

.customer-auth-card,
.customer-tickets-panel {
  border:1px solid #d8e1e8;
  border-radius:14px;
  background:#fff;
  box-shadow:
    0 2px 8px
    rgba(5,32,68,.05);
}

.customer-auth-card {
  padding:22px;
}

.customer-auth-card h3 {
  margin:0 0 16px;
  color:#052044;
}

.customer-auth-card form {
  display:grid;
  gap:14px;
}

.customer-auth-card label {
  display:grid;
  gap:6px;
  color:#293746;
  font-weight:700;
  font-size:14px;
}

.customer-auth-card input {
  width:100%;
  box-sizing:border-box;
  min-height:46px;
  padding:9px 11px;
  border:1px solid #becbd5;
  border-radius:7px;
  background:#fff;
  color:#17212b;
  font:inherit;
}

.customer-auth-card small {
  color:#6c7b88;
}

.customer-account-primary-button,
.customer-account-secondary-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  min-height:44px;
  padding:9px 16px;
  border-radius:7px;
  font:inherit;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}

.customer-account-primary-button {
  border:1px solid
    var(--brand-primary,#0b4f86);
  background:
    var(--brand-primary,#0b4f86);
  color:#fff;
}

.customer-account-secondary-button {
  border:1px solid #b8c6d1;
  background:#fff;
  color:#052044;
}

.customer-account-text-button {
  margin-top:14px;
  padding:0;
  border:0;
  background:transparent;
  color:
    var(--brand-primary,#0b4f86);
  font:inherit;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.customer-forgot-password {
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid #e2e8ed;
}

.customer-account-result {
  min-height:18px;
  color:#566878;
  font-size:13px;
}

.customer-account-welcome {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.customer-account-welcome p {
  margin:0;
  color:#647484;
}

.customer-account-actions {
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.customer-tickets-panel {
  padding:20px;
}

.customer-account-section-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.customer-account-section-heading span {
  color:#6c7b88;
  font-size:13px;
}

.customer-ticket-list {
  display:grid;
  gap:12px;
}

.customer-ticket-card {
  padding:16px;
  border:1px solid #dce4ea;
  border-radius:10px;
  background:#f9fbfc;
}

.customer-ticket-card__top {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.customer-ticket-card h4 {
  margin:5px 0 0;
  color:#17212b;
  font-size:16px;
}

.customer-ticket-reference {
  color:#617283;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
}

.customer-ticket-status {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  min-width:100px;
  min-height:30px;
  padding:3px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.customer-ticket-status.is-open {
  background:#fee2e2;
  color:#991b1b;
}

.customer-ticket-status.is-awaiting {
  background:#fef3c7;
  color:#92400e;
}

.customer-ticket-status.is-closed {
  background:#dcfce7;
  color:#166534;
}

.customer-ticket-card__meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px 24px;
  margin-top:13px;
  padding-top:12px;
  border-top:1px solid #e1e8ee;
  color:#647484;
  font-size:12px;
}

.customer-ticket-card__meta span {
  display:grid;
  gap:2px;
}

.customer-ticket-card__meta strong {
  color:#364656;
}

.customer-ticket-card__actions {
  display:flex;
  justify-content:flex-end;
  margin-top:13px;
}

.customer-account-empty {
  padding:34px 18px;
  border:1px dashed #ccd8e1;
  border-radius:10px;
  text-align:center;
}

.customer-account-empty h4 {
  margin:0 0 6px;
  color:#052044;
}

.customer-account-empty p {
  margin:0 0 16px;
  color:#687988;
}

@media (max-width:760px) {

  .customer-auth-grid {
    grid-template-columns:1fr;
  }

  .customer-account-welcome {
    display:grid;
    align-items:start;
  }

  .customer-account-actions {
    display:grid;
    grid-template-columns:1fr;
  }

  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-actions
  .customer-account-secondary-button {
    width:100%;
  }

  .customer-ticket-card__top {
    display:grid;
  }

  .customer-ticket-status {
    width:100%;
    box-sizing:border-box;
  }

  .customer-ticket-card__meta {
    display:grid;
    gap:8px;
  }

  .customer-ticket-card__actions {
    display:block;
  }

  .customer-ticket-card__actions
  .customer-account-secondary-button {
    width:100%;
  }

  /*
   * Prevent Safari focus zoom.
   */
  .customer-auth-card input,
  .customer-auth-card textarea,
  .customer-auth-card select {
    font-size:16px !important;
  }

}


/* CUSTOMER TICKET DETAIL V1 */

.customer-ticket-main {
  padding-top:22px;
  padding-bottom:48px;
}

.customer-ticket-summary {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-top:18px;
  padding:20px;
  border:1px solid #d8e1e8;
  border-radius:14px;
  background:#fff;
  box-shadow:
    0 2px 8px
    rgba(5,32,68,.05);
}

.customer-ticket-summary h2 {
  margin:4px 0 6px;
  color:#052044;
}

.customer-ticket-summary__reference {
  margin:0;
  color:#687988;
  font-size:13px;
  font-weight:800;
}

.customer-ticket-conversation-panel,
.customer-ticket-reply-panel {
  margin-top:18px;
  padding:20px;
  border:1px solid #d8e1e8;
  border-radius:14px;
  background:#fff;
  box-shadow:
    0 2px 8px
    rgba(5,32,68,.05);
}

.customer-conversation-list {
  display:grid;
  gap:12px;
}

.customer-conversation-message {
  padding:15px;
  border:1px solid #dce5eb;
  border-radius:10px;
  background:#f8fafc;
}

.customer-conversation-message.is-support {
  border-left:
    4px solid
    var(--brand-primary,#0b4f86);
  background:#fff;
}

.customer-conversation-message.is-customer {
  border-left:4px solid #94a3b8;
}

.customer-conversation-message__header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}

.customer-conversation-message__header strong {
  color:#052044;
}

.customer-conversation-message__header span {
  color:#748391;
  font-size:12px;
}

.customer-conversation-message__body {
  color:#2d3b48;
  line-height:1.55;
}

.customer-conversation-attachments {
  margin-top:13px;
  padding-top:11px;
  border-top:1px solid #e1e8ee;
}

.customer-conversation-attachments > strong {
  display:block;
  margin-bottom:7px;
  color:#435565;
  font-size:12px;
}

.customer-conversation-attachment-list {
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.customer-conversation-attachment {
  display:flex;
  align-items:center;
  gap:8px;
  max-width:100%;
  padding:8px 10px;
  border:1px solid #ccd8e1;
  border-radius:7px;
  background:#fff;
  color:#052044;
  text-decoration:none;
}

.customer-conversation-attachment span:last-child {
  display:grid;
  min-width:0;
}

.customer-conversation-attachment strong {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:13px;
}

.customer-conversation-attachment small {
  color:#758492;
  font-size:11px;
}

.customer-ticket-reply-panel form {
  display:grid;
  gap:12px;
  margin-top:15px;
}

.customer-ticket-reply-panel label[for="customer-ticket-reply"] {
  color:#293746;
  font-size:14px;
  font-weight:800;
}

.customer-ticket-reply-panel textarea {
  width:100%;
  box-sizing:border-box;
  min-height:150px;
  padding:11px;
  border:1px solid #becbd5;
  border-radius:7px;
  background:#fff;
  color:#17212b;
  font:inherit;
  resize:vertical;
}

.customer-reply-attachment-area {
  display:grid;
  gap:8px;
}

.customer-reply-attach-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:max-content;
  min-height:40px;
  box-sizing:border-box;
  padding:7px 13px;
  border:1px solid #b8c6d1;
  border-radius:7px;
  background:#fff;
  color:#052044;
  font-size:13px;
  font-weight:800;
  cursor:pointer;
}

.customer-reply-attachment-area small {
  color:#748391;
  font-size:12px;
}

.customer-reply-file-list {
  display:grid;
  gap:6px;
}

.customer-reply-file {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 10px;
  border:1px solid #d8e1e8;
  border-radius:7px;
  background:#f8fafc;
  font-size:12px;
}

.customer-reply-file span {
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.customer-reply-file button {
  border:0;
  background:transparent;
  color:#9b1c1c;
  font:inherit;
  font-weight:800;
  cursor:pointer;
}

@media (max-width:760px) {

  .customer-ticket-summary {
    display:grid;
  }

  .customer-ticket-summary
  .customer-ticket-status {
    width:100%;
    box-sizing:border-box;
  }

  .customer-conversation-message__header {
    display:grid;
    gap:3px;
  }

  .customer-conversation-attachment-list {
    display:grid;
  }

  .customer-conversation-attachment {
    width:100%;
    box-sizing:border-box;
  }

  .customer-reply-attach-button {
    width:100%;
  }

  /*
   * Prevent iPhone Safari focus zoom.
   */
  .customer-ticket-reply-panel textarea,
  .customer-ticket-reply-panel input,
  .customer-ticket-reply-panel select {
    font-size:16px !important;
  }

}


/* CUSTOMER ACCOUNT ROUTE DIFFERENTIATION V1 */

/*
 * Mirrors the approved Bulldog Store account treatment:
 * brand remains dominant; red kicker distinguishes the
 * Existing Customer and New Customer routes.
 */
.customer-auth-route-kicker {
  margin:0 0 8px;
  color:#c62828;
  font-size:13px;
  font-weight:900;
  letter-spacing:.12em;
  line-height:1.2;
}

.customer-auth-route-intro {
  margin:-7px 0 18px;
  color:#617283;
  line-height:1.5;
}

.customer-auth-card--existing h3,
.customer-auth-card--new h3 {
  margin-bottom:12px;
}

@media (max-width:760px) {

  .customer-auth-route-kicker {
    font-size:12px;
  }

}


/* CUSTOMER PORTAL HEADER LOGO FIX V1 */

/*
 * Keep the My Account / customer ticket header logo
 * within the same compact visual slot as the approved
 * public Helpdesk header.
 */
.customer-account-page .public-logo-slot {
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
  width:210px;
  height:78px;
  overflow:hidden;
}

.customer-account-page .public-logo-slot img {
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:left center;
}

.customer-account-page .helpdesk-brand {
  min-width:0;
}

@media (max-width:760px) {

  .customer-account-page .public-logo-slot {
    width:150px;
    height:58px;
  }

  .customer-account-page .public-logo-slot img {
    width:100%;
    height:100%;
    object-fit:contain;
  }

}


/* BULLDOG PUBLIC HEADER AUTHORITATIVE V1 */

/*
 * Authoritative Bulldog public Helpdesk branding.
 *
 * Applies consistently to:
 * - Help Centre
 * - Create Ticket
 * - My Account
 * - Customer Ticket Detail
 *
 * AlarmSIMCard remains untouched.
 */

body[data-brand="brand_bulldog"] {
  --brand-primary:#0b4f86;
  --brand-primary-dark:#073b67;
  --brand-heading:#073b67;
}

/*
 * Remove redundant BULLDOG text above Helpdesk.
 * Bulldog is already clearly identified by the logo.
 */
body[data-brand="brand_bulldog"]
.brand-kicker {
  display:none !important;
}

/*
 * Ensure the dedicated Bulldog logo block is always visible.
 * The background is a safe fallback for public templates
 * where the image element is absent or has not loaded.
 */
body[data-brand="brand_bulldog"]
.public-logo-slot {
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 220px;
  width:220px;
  height:82px;
  overflow:hidden;
  background-image:
    url("/assets/branding/bulldog-logo.png");
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}

body[data-brand="brand_bulldog"]
.public-logo-slot img {
  display:block;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:left center;
}

/*
 * Keep the Helpdesk title visually aligned
 * with the approved public header.
 */
body[data-brand="brand_bulldog"]
.helpdesk-brand__text {
  display:flex;
  align-items:center;
  min-height:82px;
}

body[data-brand="brand_bulldog"]
.helpdesk-brand__text > strong {
  display:block;
  margin:0;
  color:#073b67;
  font-size:34px;
  line-height:1;
  font-weight:800;
}

/*
 * Authoritative Bulldog hero colour.
 */
body[data-brand="brand_bulldog"]
.help-search-hero {
  background:#0b4f86 !important;
}

/*
 * Bulldog public headings and portal controls should
 * use the same brand blues as the existing Help Centre.
 */
body[data-brand="brand_bulldog"]
.customer-account-page h1,
body[data-brand="brand_bulldog"]
.customer-account-page h2,
body[data-brand="brand_bulldog"]
.customer-account-page h3,
body[data-brand="brand_bulldog"]
.customer-account-page h4,
body[data-brand="brand_bulldog"]
.customer-auth-card h3,
body[data-brand="brand_bulldog"]
.customer-ticket-summary h2 {
  color:#073b67;
}

body[data-brand="brand_bulldog"]
.customer-account-primary-button {
  border-color:#0b4f86;
  background:#0b4f86;
}

body[data-brand="brand_bulldog"]
.customer-account-primary-button:hover {
  border-color:#073b67;
  background:#073b67;
}

/*
 * Public navigation remains the approved Bulldog navy
 * with red active-state treatment.
 */
body[data-brand="brand_bulldog"]
.public-site-nav a {
  color:#073b67;
}

@media (max-width:760px) {

  body[data-brand="brand_bulldog"]
  .public-logo-slot {
    flex-basis:150px;
    width:150px;
    height:58px;
  }

  body[data-brand="brand_bulldog"]
  .helpdesk-brand__text {
    min-height:58px;
  }

  body[data-brand="brand_bulldog"]
  .helpdesk-brand__text > strong {
    font-size:25px;
  }

}


/* PUBLIC HELPDESK HEADER LOGO ONLY V2 */

/*
 * Authoritative public header:
 * brand logo only.
 * No duplicated brand name or "Helpdesk" wording.
 */
.public-site-header .helpdesk-brand__text {
  display:none !important;
}

.public-site-header .helpdesk-brand {
  display:flex;
  align-items:center;
  min-width:0;
  text-decoration:none;
}

/*
 * Common logo slot.
 */
.public-site-header .public-logo-slot {
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
  overflow:hidden;
}

.public-site-header .public-logo-slot img {
  display:block !important;
  width:100%;
  height:100%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  object-position:left center;
}

/*
 * Bulldog authoritative public colours.
 */
body[data-brand="brand_bulldog"] {
  --brand-primary:#0b4f86;
  --brand-primary-dark:#073b67;
}

body[data-brand="brand_bulldog"]
.help-search-hero {
  background:#0b4f86 !important;
}

body[data-brand="brand_bulldog"]
.public-logo-slot {
  width:220px;
  height:82px;
  flex-basis:220px;
  background-image:
    url("/assets/branding/bulldog-logo.png");
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
}

/*
 * Do not allow older Bulldog header rules
 * to introduce a different blue.
 */
body[data-brand="brand_bulldog"]
.customer-account-primary-button {
  background:#0b4f86 !important;
  border-color:#0b4f86 !important;
}

body[data-brand="brand_bulldog"]
.customer-account-primary-button:hover {
  background:#073b67 !important;
  border-color:#073b67 !important;
}

/*
 * AlarmSIMCard keeps its approved logo treatment.
 * No extra Helpdesk wording is displayed.
 */
body[data-brand="brand_alarmsimcard"]
.public-logo-slot {
  display:flex !important;
  align-items:center;
  justify-content:flex-start;
}

@media (max-width:760px) {

  body[data-brand="brand_bulldog"]
  .public-logo-slot {
    width:150px;
    height:58px;
    flex-basis:150px;
  }

}


/* MY ACCOUNT BULLDOG BRANDING AUTHORITATIVE V3 */

/*
 * Account pages must exactly follow the approved
 * Bulldog public Helpdesk colour treatment.
 */

body.customer-account-page[data-brand="brand_bulldog"] {
  --brand-primary:#0b4f86 !important;
  --brand-primary-dark:#073b67 !important;
}

/* Correct Bulldog hero blue */
body.customer-account-page[data-brand="brand_bulldog"]
.help-search-hero {
  background:#0b4f86 !important;
  background-color:#0b4f86 !important;
}

/*
 * Logo only in the public header.
 * Never depend on a background image alone.
 */
body.customer-account-page[data-brand="brand_bulldog"]
.helpdesk-brand {
  display:flex !important;
  align-items:center !important;
  text-decoration:none !important;
}

body.customer-account-page[data-brand="brand_bulldog"]
.public-logo-slot {
  display:flex !important;
  visibility:visible !important;
  opacity:1 !important;
  align-items:center !important;
  justify-content:flex-start !important;

  width:220px !important;
  min-width:220px !important;
  max-width:220px !important;

  height:82px !important;
  min-height:82px !important;

  overflow:hidden !important;

  background:
    url("/assets/branding/bulldog-logo.png")
    left center / contain
    no-repeat !important;
}

body.customer-account-page[data-brand="brand_bulldog"]
.public-logo-slot img {
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;

  width:220px !important;
  max-width:220px !important;

  height:82px !important;
  max-height:82px !important;

  object-fit:contain !important;
  object-position:left center !important;
}

/* Logo only — no duplicated branding text */
body.customer-account-page[data-brand="brand_bulldog"]
.helpdesk-brand__text {
  display:none !important;
}

/* Account headings/nav use approved darker Bulldog blue */
body.customer-account-page[data-brand="brand_bulldog"]
.public-site-nav a,
body.customer-account-page[data-brand="brand_bulldog"]
h2,
body.customer-account-page[data-brand="brand_bulldog"]
h3,
body.customer-account-page[data-brand="brand_bulldog"]
h4 {
  color:#073b67;
}

/* Primary account actions use the same Bulldog blue */
body.customer-account-page[data-brand="brand_bulldog"]
.customer-account-primary-button {
  background:#0b4f86 !important;
  border-color:#0b4f86 !important;
  color:#fff !important;
}

body.customer-account-page[data-brand="brand_bulldog"]
.customer-account-primary-button:hover {
  background:#073b67 !important;
  border-color:#073b67 !important;
}

@media (max-width:760px) {

  body.customer-account-page[data-brand="brand_bulldog"]
  .public-logo-slot {
    width:150px !important;
    min-width:150px !important;
    max-width:150px !important;
    height:58px !important;
    min-height:58px !important;
  }

  body.customer-account-page[data-brand="brand_bulldog"]
  .public-logo-slot img {
    width:150px !important;
    max-width:150px !important;
    height:58px !important;
    max-height:58px !important;
  }

}


/* AUTHENTICATED CREATE TICKET V1 */

.signed-in-ticket-identity {
  display:grid;
  gap:3px;
  padding:14px 16px;
  border:1px solid #d6e0e8;
  border-radius:8px;
  background:#f8fafc;
}

.signed-in-ticket-identity strong {
  color:#073b67;
}

.signed-in-ticket-identity span {
  color:#425466;
  font-size:14px;
}

.signed-in-ticket-identity small {
  margin-top:3px;
  color:#687988;
  font-size:12px;
}

body[data-brand="brand_bulldog"]
.signed-in-ticket-identity {
  border-left:4px solid #0b4f86;
}

body[data-brand="brand_alarmsimcard"]
.signed-in-ticket-identity {
  border-left:4px solid #220075;
}


/* VERIFICATION RESEND VISIBILITY V1 */

.verification-resend-control[hidden],
.verification-resend-control.is-hidden {
  display: none !important;
}

.verification-resend-control:not([hidden]):not(.is-hidden) {
  display: inline-flex;
}


/* AUTH / CUSTOMER VISUAL FIXES V1 */

/*
 * Native hidden must win over the grid declaration on
 * .customer-auth-card form.
 */
.customer-forgot-password[hidden] {
  display:none !important;
}

/*
 * Authenticated desktop account actions stay compact
 * and horizontal. Existing mobile rules below 760px
 * deliberately restore full-width stacked controls.
 */
@media (min-width:761px) {
  .customer-account-actions {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-end;
  }

  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-actions
  .customer-account-secondary-button {
    width:auto;
    min-width:0;
    flex:0 0 auto;
  }
}


/* AUTH / CUSTOMER VISUAL ACCEPTANCE V2 — AUTHORITATIVE */

/*
 * Forgotten-password control stays readable in every state.
 */
.customer-account-text-button {
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  box-sizing:border-box;
  min-height:40px;
  margin-top:14px;
  padding:8px 15px;
  border:1px solid var(--brand-primary,#0b4f86);
  border-radius:7px;
  background:var(--brand-primary,#0b4f86);
  color:#ffffff !important;
  font-weight:800;
  line-height:1.2;
  text-decoration:none;
}

.customer-account-text-button:hover,
.customer-account-text-button:focus,
.customer-account-text-button:focus-visible {
  border-color:#073b67 !important;
  background:#073b67 !important;
  color:#ffffff !important;
}

/* Hidden means genuinely hidden until clicked. */
.customer-forgot-password[hidden] {
  display:none !important;
}

/*
 * Desktop My Account actions form one compact,
 * balanced horizontal action group.
 */
@media (min-width:761px) {

  .customer-account-welcome {
    display:flex !important;
    align-items:flex-end !important;
    justify-content:space-between !important;
    gap:24px !important;
  }

  .customer-account-actions {
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:10px !important;
    width:auto !important;
  }

  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-actions
  .customer-account-secondary-button {
    display:inline-flex !important;
    width:auto !important;
    min-width:145px !important;
    min-height:44px !important;
    padding:10px 18px !important;
    margin:0 !important;
    flex:0 0 auto !important;
    border-radius:7px !important;
    white-space:nowrap;
  }

  .customer-account-actions
  .customer-account-secondary-button:hover,
  .customer-account-actions
  .customer-account-secondary-button:focus-visible {
    border-color:#0b4f86 !important;
    background:#f3f7fa !important;
    color:#073b67 !important;
  }
}

/*
 * Mobile remains deliberately full-width and stacked.
 */
@media (max-width:760px) {

  .customer-account-actions {
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
  }

  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-actions
  .customer-account-secondary-button {
    width:100% !important;
  }
}


/* MY ACCOUNT ACTIONS — FINAL RESPONSIVE ACCEPTANCE */

/*
 * Keep the authenticated action pair horizontal on
 * ordinary desktop/tablet-width account pages.
 */
@media (min-width:601px) {

  .customer-account-page
  .customer-account-actions {
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:10px !important;
    width:auto !important;
  }

  .customer-account-page
  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-page
  .customer-account-actions
  .customer-account-secondary-button {
    display:inline-flex !important;
    width:auto !important;
    min-width:0 !important;
    min-height:42px !important;
    padding:9px 16px !important;
    margin:0 !important;
    flex:0 0 auto !important;
    white-space:nowrap !important;
  }
}

/*
 * Only genuinely narrow/mobile screens stack actions.
 */
@media (max-width:600px) {

  .customer-account-page
  .customer-account-actions {
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:9px !important;
    width:100% !important;
  }

  .customer-account-page
  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-page
  .customer-account-actions
  .customer-account-secondary-button {
    width:100% !important;
  }
}


/* MOBILE ACCOUNT HEADER / ACTIONS — FINAL */

@media (max-width:600px) {

  /*
   * Centre the public brand logo when the mobile
   * header/navigation is in its stacked layout.
   */
  .customer-account-page
  .public-site-header
  .helpdesk-brand {
    width:100% !important;
    justify-content:center !important;
  }

  .customer-account-page
  .public-site-header
  .public-logo-slot {
    margin-left:auto !important;
    margin-right:auto !important;
    justify-content:center !important;
    background-position:center center !important;
  }

  .customer-account-page
  .public-site-header
  .public-logo-slot img {
    object-position:center center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  /*
   * Mobile account actions use the full available
   * content width for a cleaner stacked appearance.
   */
  .customer-account-page
  .customer-account-actions {
    display:grid !important;
    grid-template-columns:1fr !important;
    width:100% !important;
    gap:10px !important;
  }

  .customer-account-page
  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-page
  .customer-account-actions
  .customer-account-secondary-button {
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
    justify-content:center !important;
  }
}


/* MOBILE ACCOUNT — LOGO +20% / FULL-WIDTH ACTIONS */

@media (max-width:600px) {

  /*
   * Increase the centred Bulldog account-header logo
   * from 150x58 to approximately +20%.
   */
  body.customer-account-page[data-brand="brand_bulldog"]
  .public-site-header
  .public-logo-slot {
    width:180px !important;
    min-width:180px !important;
    max-width:180px !important;
    height:70px !important;
    min-height:70px !important;
    flex-basis:180px !important;
    margin-left:auto !important;
    margin-right:auto !important;
    background-position:center center !important;
  }

  body.customer-account-page[data-brand="brand_bulldog"]
  .public-site-header
  .public-logo-slot img {
    width:180px !important;
    max-width:180px !important;
    height:70px !important;
    max-height:70px !important;
    object-fit:contain !important;
    object-position:center center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  /*
   * Force the mobile action area to consume the full
   * width of the account content column.
   */
  .customer-account-page
  .customer-account-welcome {
    display:block !important;
    width:100% !important;
  }

  .customer-account-page
  .customer-account-actions {
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
    margin-top:20px !important;
    gap:10px !important;
  }

  .customer-account-page
  .customer-account-actions
  .customer-account-primary-button,
  .customer-account-page
  .customer-account-actions
  .customer-account-secondary-button {
    display:flex !important;
    width:100% !important;
    min-width:100% !important;
    max-width:none !important;
    box-sizing:border-box !important;
    margin:0 !important;
    justify-content:center !important;
  }
}

/* CUSTOMER MY TICKETS — MOBILE CENTRED CARD V1 */
@media (max-width:760px) {

  .customer-ticket-card {
    text-align:center;
  }

  .customer-ticket-card__top {
    width:100%;
    text-align:center;
  }

  .customer-ticket-card__top > div {
    width:100%;
    text-align:center;
  }

  .customer-ticket-reference,
  .customer-ticket-card h4 {
    display:block;
    width:100%;
    text-align:center;
  }

  .customer-ticket-status {
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    max-width:none;
    box-sizing:border-box;
    margin-top:12px;
    text-align:center;
  }

  .customer-ticket-card__meta {
    width:100%;
    text-align:center;
  }

  .customer-ticket-card__meta > span {
    display:block;
    width:100%;
    text-align:center;
  }

  .customer-ticket-card__actions {
    width:100%;
    text-align:center;
  }

  .customer-ticket-card__actions
  .customer-account-secondary-button {
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    box-sizing:border-box;
    text-align:center;
  }

}

/* CUSTOMER MY TICKETS — MOBILE FINAL ALIGNMENT V2 */
@media (max-width:760px) {

  .customer-ticket-card__top {
    display:block !important;
    width:100% !important;
    text-align:center !important;
  }

  .customer-ticket-card__top > div {
    display:block !important;
    width:100% !important;
    max-width:none !important;
    text-align:center !important;
  }

  .customer-ticket-reference {
    display:block !important;
    width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
    text-align:center !important;
  }

  .customer-ticket-card h4 {
    width:100% !important;
    text-align:center !important;
  }

  .customer-ticket-status {
    display:flex !important;
    width:100% !important;
    max-width:none !important;
    min-width:0 !important;
    margin:16px 0 0 !important;
    padding-left:16px;
    padding-right:16px;
    box-sizing:border-box !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
  }

}
