@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");
html {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

body#login {
  min-height: 100vh;
  margin: 0;
  padding: 2rem 1rem;
  background-color: #fefaf9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

body#login .login-shell {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body#login .login-flash {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  background: #fffbfa;
  color: #2d2524;
}

body#login .login-flash--success {
  background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 55%, #f8fafc 100%);
  border-color: #a7f3d0;
  color: #14532d;
}

body#login .login-flash--error,
body#login .login-flash--verify_email_error {
  background: linear-gradient(145deg, #fef2f2 0%, #fff1f2 55%, #fefaf9 100%);
  border-color: #fecaca;
  color: #991b1b;
}

body#login .login-page {
  width: 100%;
  max-width: 420px;
  margin: 0;
}

body#login .login-card {
  background: #fffbfa;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  text-align: center;
  border: 1px solid #f5e0dc;
}

body#login .login-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2524;
  letter-spacing: -0.02em;
}

body#login .login-card__subtitle {
  margin: 0 0 1.75rem;
  font-size: 0.9375rem;
  color: #7d6e6b;
  font-weight: 400;
  line-height: 1.4;
}

body#login .login-card .flash-error {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 0.875rem;
  list-style: none;
}

body#login .login-card .flash-success {
  margin-bottom: 1.25rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.875rem;
}

body#login .login-form__group {
  margin-bottom: 1.25rem;
  text-align: left;
}

body#login .login-form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d2524;
}

body#login .login-form__input-wrap {
  position: relative;
}

body#login .login-form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 1px solid #f5e0dc;
  border-radius: 12px;
  background: #fffbfa;
  color: #2d2524;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
body#login .login-form__input::placeholder {
  color: #7d6e6b;
}
body#login .login-form__input:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.25);
}

body#login .login-form__password-wrap {
  position: relative;
}

body#login .login-form__password-wrap .login-form__input {
  padding-right: 4rem;
}

body#login .login-form__toggle-password {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  color: #7d6e6b;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
body#login .login-form__toggle-password:hover {
  color: #2d2524;
  background: #fef0ed;
}

body#login .login-form__help {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
}
body#login .login-form__help a {
  color: #7d6e6b;
  text-decoration: none;
}
body#login .login-form__help a:hover {
  color: #2d2524;
  text-decoration: underline;
}

body#login .login-form__submit {
  width: 100%;
  padding: 0.9375rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
  background: #F99584;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.05s;
}
body#login .login-form__submit:hover {
  background: #f8806c;
}
body#login .login-form__submit:active {
  transform: scale(0.99);
}

body#login .login-card__footer-link {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}
body#login .login-card__footer-link a {
  color: #F99584;
  text-decoration: none;
  font-weight: 500;
}
body#login .login-card__footer-link a:hover {
  text-decoration: underline;
}

body#login .login-page__footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #7d6e6b;
  text-align: center;
}
body#login .login-page__footer a {
  color: #7d6e6b;
  text-decoration: none;
}
body#login .login-page__footer a:hover {
  color: #2d2524;
}

.app-layout {
  display: flex;
  min-height: 100vh;
  background: #fefaf9;
}

.app-sidebar {
  width: 260px;
  flex-shrink: 0;
  margin: 1rem 0 1rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 1rem;
  height: calc(100vh - 2rem);
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-sidebar__header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid #f5e0dc;
}

.app-sidebar__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.app-sidebar__logo:hover .app-sidebar__logo-img {
  opacity: 0.88;
}

.app-sidebar__logo-img {
  display: block;
  height: 1.75rem;
  width: auto;
  max-width: min(100%, 11rem);
}

.app-sidebar__nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}

.app-sidebar__section-title {
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
}

.app-sidebar__icon {
  flex-shrink: 0;
  height: 1.15em;
  width: 1.15em;
}

.app-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  margin: 0 0.5rem;
  font-size: 0.9375rem;
  color: #7d6e6b;
  text-decoration: none;
  border-radius: 14px;
  transition: background 0.15s, color 0.15s;
}
.app-sidebar__link:hover {
  background: #fef0ed;
  color: #F99584;
}
.app-sidebar__link.active {
  background: #F99584;
  color: #fff;
  font-weight: 500;
}
.app-sidebar__link--pending {
  cursor: default;
  opacity: 0.85;
  pointer-events: none;
}
.app-sidebar__link--pending:hover {
  background: transparent;
  color: #7d6e6b;
}

.app-sidebar__badge {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #F99584;
  background: #fef0ed;
  padding: 0.2em 0.5em;
  border-radius: 6px;
}

.app-sidebar__expert {
  padding: 0 1.25rem 1rem;
  flex-shrink: 0;
}

.app-sidebar__expert-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin: 0 0 0.5rem;
}

.app-sidebar__expert-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #f5e0dc;
  border-radius: 14px;
  min-width: 0;
}

.app-sidebar__expert-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-sidebar__expert-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fce0da;
  color: #F99584;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.app-sidebar__expert-avatar--img {
  object-fit: cover;
  background: transparent;
}

.app-sidebar__expert-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2d2524;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.app-sidebar__expert-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f5e0dc;
  min-width: 0;
}

.app-sidebar__expert-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #7d6e6b;
  line-height: 1.4;
  min-width: 0;
  padding: 0.15rem 0;
}
.app-sidebar__expert-contact .app-sidebar__expert-contact-icon {
  flex-shrink: 0;
}

.app-sidebar__expert-contact-text {
  min-width: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.app-sidebar__expert-contact-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex-shrink: 0;
}

.app-sidebar__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #f5e0dc;
  flex-shrink: 0;
}

.app-sidebar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
}

.app-sidebar__user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fce0da;
  color: #F99584;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.app-sidebar__user-info {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-sidebar__user-name {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #2d2524;
}

.app-sidebar__user-settings {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  color: #7d6e6b;
  transition: color 0.15s, background 0.15s;
}
.app-sidebar__user-settings:hover {
  color: #F99584;
  background: #fef0ed;
}

.app-sidebar__user-settings-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.app-sidebar__logout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #7d6e6b;
  text-decoration: none;
  padding: 0.25rem 0;
}
.app-sidebar__logout:hover {
  color: #2d2524;
}

.app-sidebar__logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d6e6b;
  background: transparent;
  border: 1px solid #f5e0dc;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-sizing: border-box;
  outline: none;
}
.app-sidebar__logout-btn:hover {
  background: #fef0ed;
  color: #F99584;
  border-color: #fce0da;
}
.app-sidebar__logout-btn:focus-visible {
  box-shadow: 0 0 0 2px #fefaf9, 0 0 0 4px #F99584;
}

.app-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.app-main__header {
  margin: 1rem 1.5rem 0;
  padding: 1.5rem 2rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-main__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2524;
  letter-spacing: -0.02em;
}

.app-main__content {
  padding: 1.5rem 2rem;
  flex: 1;
}

.app-main .flash {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
}

.app-main .flash-success {
  background: #dcfce7;
  color: #166534;
}

.app-main .flash-error {
  background: #fef2f2;
  color: #b91c1c;
}

.app-main .flash-verify_email_error {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
}

.app-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.app-kpi__card {
  background: #fffbfa;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-kpi__label {
  font-size: 0.8125rem;
  color: #7d6e6b;
  margin-bottom: 0.25rem;
}

.app-kpi__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2524;
}

.app-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
  margin: 0 0 1rem;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2d2524;
  background: #F99584;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.app-btn:hover {
  background: #f8806c;
  color: #2d2524;
}

.app-btn__icon {
  flex-shrink: 0;
  height: 1.1em;
  width: 1.1em;
}

.app-form-page .app-form__group {
  margin-bottom: 1.25rem;
}

.app-form-page .app-form__group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d2524;
}

.app-form-page .app-form__input {
  width: 100%;
  max-width: 400px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #f5e0dc;
  border-radius: 12px;
  background: #fffbfa;
  color: #2d2524;
  box-sizing: border-box;
}

.app-form-page .app-form__input:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.25);
}

.app-form-page button.app-btn {
  margin-top: 0.5rem;
}

.app-dashboard__intro {
  color: #7d6e6b;
  margin: 0 0 1.5rem;
}

.app-dashboard__empty {
  color: #7d6e6b;
  margin: 0;
}

.app-dashboard__companies {
  list-style: none;
  padding: 0;
  margin: 0;
}

.app-dashboard__company {
  padding: 0.75rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  color: #2d2524;
}

.app-dashboard__audits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.app-dashboard__audit {
  padding: 0.75rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.app-dashboard__audit a {
  color: #F99584;
  font-weight: 500;
  text-decoration: none;
}
.app-dashboard__audit a:hover {
  text-decoration: underline;
}

.app-dashboard__audit-meta {
  color: #7d6e6b;
  font-size: 0.9rem;
}

.app-audit-list__intro {
  color: #7d6e6b;
  margin: 0 0 1.5rem;
}

.app-suivi-show__intro {
  color: #7d6e6b;
  font-size: 1rem;
  margin: 0 0 1.75rem;
}

.app-suivi-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.app-suivi-card {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  overflow: hidden;
}

.app-suivi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(249, 149, 132, 0.06);
  border-bottom: 1px solid #f5e0dc;
}

.app-suivi-card__period {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7d6e6b;
  letter-spacing: 0.02em;
}

.app-suivi-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #F99584;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(249, 149, 132, 0.35);
}
.app-suivi-card__action:hover {
  background: #f87c67;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 149, 132, 0.4);
}

.app-suivi-card__action-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}
.app-suivi-card__action-icon--sm {
  width: 0.95em;
  height: 0.95em;
  opacity: 0.9;
}

.app-suivi-card__notes {
  padding: 1rem 1.25rem 1.25rem;
}

.app-suivi-card__details {
  border-top: 1px solid #f5e0dc;
}

.app-suivi-card__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1.25rem;
}
.app-suivi-card__summary::-webkit-details-marker {
  display: none;
}

.app-suivi-card__summary-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.app-suivi-card__notes-label--summary {
  margin-bottom: 0;
}

.app-suivi-card__summary-hint {
  font-size: 0.8125rem;
  color: #7d6e6b;
}

.app-suivi-card__summary-chevron {
  width: 1rem;
  height: 1rem;
  color: #7d6e6b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.app-suivi-card__details[open] .app-suivi-card__summary-chevron {
  transform: rotate(180deg);
}

.app-suivi-card__details[open] .app-suivi-card__summary-hint {
  visibility: hidden;
}

.app-suivi-card__notes-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin-bottom: 0.5rem;
}

.app-suivi-card__notes-content {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #2d2524;
}
.app-suivi-card__notes-content p {
  margin: 0 0 0.5rem;
}
.app-suivi-card__notes-content p:last-child {
  margin-bottom: 0;
}
.app-suivi-card__notes-content ul, .app-suivi-card__notes-content ol {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.35rem;
}
.app-suivi-card__notes-content li {
  margin-bottom: 0.25rem;
}
.app-suivi-card__notes-content strong, .app-suivi-card__notes-content b {
  font-weight: 600;
}

.app-suivi-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: #fffbfa;
  border: 1px dashed #f5e0dc;
  border-radius: 20px;
}

.app-suivi-empty__icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f5e0dc;
}
.app-suivi-empty__icon svg, .app-suivi-empty__icon .app-suivi-empty__icon-svg {
  width: 3rem;
  height: 3rem;
}

.app-suivi-empty__text {
  margin: 0;
  color: #7d6e6b;
  font-size: 1rem;
}

.admin-switch-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}

.admin-switch-row .admin-switch__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-switch-row .admin-switch__track {
  display: inline-block;
  width: 2.5rem;
  height: 1.35rem;
  flex-shrink: 0;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.admin-switch-row .admin-switch__track::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(1.35rem - 4px);
  height: calc(1.35rem - 4px);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.admin-switch-row:has(.admin-switch__input:checked) .admin-switch__track {
  background: #14b8a6;
}

.admin-switch-row:has(.admin-switch__input:checked) .admin-switch__track::after {
  transform: translateX(1.15rem);
}

.admin-switch-row__track-label {
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}

.admin-switch-row label {
  margin-bottom: 0;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.llm-audit-global-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f5e0dc;
}
.llm-audit-global-note .compare-note-gauge {
  vertical-align: middle;
}
.llm-audit-global-note__detail {
  font-size: 0.875rem;
  color: #7d6e6b;
}

.llm-dashboard-timeline {
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f5e0dc;
}

.llm-dashboard-timeline__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.2rem;
}

.llm-dashboard-timeline__llm {
  min-width: 56px;
  font-size: 0.7rem;
  color: #7d6e6b;
}

.llm-dashboard-timeline__scroller {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
  flex: 1;
  overflow: visible;
}

.llm-dashboard-timeline__dot {
  position: relative;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: help;
}
.llm-dashboard-timeline__dot.is-found {
  background: #22c55e;
}
.llm-dashboard-timeline__dot.is-missing {
  background: #ef4444;
}
.llm-dashboard-timeline__dot::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  font-size: 0.68rem;
  line-height: 1.2;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease;
  z-index: 15;
}
.llm-dashboard-timeline__dot:hover::after {
  opacity: 1;
}

.admin-prompts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-prompt-card {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.admin-prompt-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.admin-prompt-card__title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.admin-prompt-card__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-prompt-card__action-form {
  display: inline-block;
}

.admin-prompt-card--inactive {
  opacity: 0.85;
}
.admin-prompt-card--inactive .admin-prompt-content {
  opacity: 0.9;
}

.admin-prompt-delete-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.admin-prompt-delete-btn:hover {
  background: #fee2e2;
  color: #991b1b;
}

.admin-prompt-content {
  margin: 0.5rem 0;
  padding: 1rem;
  background: #fefaf9;
  border-radius: 14px;
  font-size: 0.875rem;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: inherit;
  border: 1px solid #f5e0dc;
}

.admin-prompt-bulk-form {
  margin-top: 0.5rem;
}

.admin-prompt-bulk-table td {
  vertical-align: top;
}

.admin-prompt-bulk-input,
.admin-prompt-bulk-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  background: #fff;
  color: #2d2524;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
}

.admin-prompt-bulk-textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.4;
}

.admin-prompt-bulk-input:focus,
.admin-prompt-bulk-textarea:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.2);
}

.admin-prompt-bulk-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}

.admin-audit-schedule-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid #f5e0dc;
  border-radius: 999px;
  background: #fefaf9;
}

.admin-audit-schedule-switch__option {
  border: 1px solid transparent;
  background: transparent;
  color: #7d6e6b;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.2s ease;
}

.admin-audit-schedule-switch__option:hover {
  color: #2d2524;
}

.admin-audit-schedule-switch__option.is-active {
  background: #fff;
  border-color: #f5e0dc;
  color: #2d2524;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.admin-prompt-bulk-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-prompt-bulk-form__actions {
  margin-top: 0.85rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.admin-prompt-bulk-empty-row td {
  color: #7d6e6b;
  font-style: italic;
}

.admin-prompt-form-card {
  max-width: 560px;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  margin-top: 0.5rem;
}
.admin-prompt-form-card form > div {
  margin-bottom: 1.25rem;
}
.admin-prompt-form-card form > div:last-of-type {
  margin-bottom: 0;
}
.admin-prompt-form-card label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d2524;
  margin-bottom: 0.5rem;
}
.admin-prompt-form-card input[type=text],
.admin-prompt-form-card textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  border: 1px solid #f5e0dc;
  border-radius: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.admin-prompt-form-card input[type=text]:focus,
.admin-prompt-form-card textarea:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.2);
}
.admin-prompt-form-card textarea {
  min-height: 140px;
  resize: vertical;
}
.admin-prompt-form-card button.admin-btn {
  margin-top: 0.75rem;
  border: none;
}

.admin-responses-intro {
  margin-bottom: 1.5rem;
}

.admin-responses-count {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}
.admin-responses-count code {
  background: #fefaf9;
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  font-size: 0.8125rem;
}

.admin-response-preview {
  max-width: 280px;
  font-size: 0.8125rem;
  word-break: break-all;
}

.admin-responses-full {
  margin-top: 2rem;
}

.admin-response-detail {
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
}
.admin-response-detail summary {
  cursor: pointer;
  font-size: 0.9375rem;
}

.admin-response-json {
  margin: 0.75rem 0 0;
  padding: 1rem;
  background: #fefaf9;
  border-radius: 14px;
  font-size: 0.8125rem;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 400px;
  overflow: auto;
  border: 1px solid #f5e0dc;
}

.llm-audit-single .llm-audit-evolution-chart {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}
.llm-audit-single .llm-audit-evolution-chart__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
}
.llm-audit-single .llm-audit-evolution-chart__canvas {
  height: 200px;
  position: relative;
}
.llm-audit-single .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f5e0dc;
}
.llm-audit-single .page-header .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 14px;
  border: 1px solid #f5e0dc;
  background: #fffbfa;
  color: #2d2524;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.llm-audit-single .page-header .btn:hover {
  background: #fefaf9;
  border-color: #ecc4bc;
}
.llm-audit-single .page-header .btn .icon-inline {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.llm-audit-single .page-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.llm-audit-single .audit-week-nav {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
}
.llm-audit-single .audit-week-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.llm-audit-single .audit-week-nav-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2d2524;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #f5e0dc;
  background: #fefaf9;
  transition: background 0.2s, border-color 0.2s;
}
.llm-audit-single .audit-week-nav-arrow:hover {
  background: #fcefec;
  border-color: #ecc4bc;
}
.llm-audit-single .audit-week-nav-arrow .icon-inline {
  width: 1.25rem;
  height: 1.25rem;
}
.llm-audit-single .audit-week-nav-arrow.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
.llm-audit-single .audit-week-nav-current {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2524;
}
@media (max-width: 480px) {
  .llm-audit-single .audit-week-nav-label {
    display: none;
  }
}
.llm-audit-single .single-audit-content {
  margin-bottom: 2rem;
}
.llm-audit-single .single-audit-info {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.llm-audit-single .info-card {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}
.llm-audit-single .info-card.prompts-list-card {
  grid-column: span 3;
}
.llm-audit-single .info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.llm-audit-single .info-card p {
  margin: 0.5rem 0;
  font-size: 0.9375rem;
}
.llm-audit-single .info-card a {
  color: #F99584;
  word-break: break-all;
}
.llm-audit-single .prompts-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
}
.llm-audit-single .prompts-list > li {
  margin-bottom: 1rem;
}
.llm-audit-single .prompts-list > li strong {
  display: block;
  margin-bottom: 0.25rem;
}
.llm-audit-single .prompts-list > li p {
  margin: 0;
  font-size: 0.875rem;
  color: #2d2524;
  white-space: pre-wrap;
  word-break: break-word;
}
.llm-audit-single .results-section {
  margin-top: 2rem;
}
.llm-audit-single .results-section > h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.llm-audit-single .results-analysis {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}
.llm-audit-single .prompts-tabs-container {
  margin-top: 0.5rem;
}
.llm-audit-single .prompts-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f5e0dc;
  padding-bottom: 0.5rem;
}
.llm-audit-single .prompt-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  color: #7d6e6b;
  transition: background 0.2s, color 0.2s;
}
.llm-audit-single .prompt-tab:hover {
  color: #2d2524;
  background: #fefaf9;
}
.llm-audit-single .prompt-tab.active {
  color: #2d2524;
  background: #fefaf9;
  border-color: #f5e0dc;
}
.llm-audit-single .tab-badge {
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  border-radius: 8px;
  font-weight: 600;
}
.llm-audit-single .tab-badge.found {
  background: #dcfce7;
  color: #166534;
}
.llm-audit-single .tab-badge.warning {
  background: #fef3c7;
  color: #92400e;
}
.llm-audit-single .tab-badge.not-found {
  background: #fee2e2;
  color: #991b1b;
}
.llm-audit-single .prompt-tab-content {
  display: none;
  padding-top: 1rem;
}
.llm-audit-single .prompt-tab-content.active {
  display: block;
}
.llm-audit-single .prompt-header-section {
  margin-bottom: 1rem;
}
.llm-audit-single .prompt-header-section h4 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
}
.llm-audit-single .prompt-header-section .prompt-text {
  margin: 0;
  font-size: 0.9375rem;
  color: #2d2524;
  white-space: pre-wrap;
  word-break: break-word;
}
.llm-audit-single .presence-pills-container {
  margin-bottom: 1.25rem;
}
.llm-audit-single .presence-pills-container h3 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}
.llm-audit-single .presence-pills-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.llm-audit-single .presence-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}
.llm-audit-single .presence-pill .presence-pill-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.llm-audit-single .presence-pill .presence-pill-indicator.found {
  background: #22c55e;
}
.llm-audit-single .presence-pill .presence-pill-indicator.not-found {
  background: #ef4444;
}
.llm-audit-single .providers-subtabs-container {
  margin-top: 1rem;
}
.llm-audit-single .providers-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.llm-audit-single .provider-subtab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  background: #fefaf9;
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  cursor: pointer;
  color: #2d2524;
  transition: background 0.2s, border-color 0.2s;
}
.llm-audit-single .provider-subtab:hover {
  background: #fdf3f0;
}
.llm-audit-single .provider-subtab.active {
  background: #fffbfa;
  border-color: #F99584;
  box-shadow: 0 0 0 2px rgba(249, 149, 132, 0.2);
}
.llm-audit-single .provider-subtab .icon-inline {
  width: 1rem;
  height: 1rem;
}
.llm-audit-single .subtab-badge {
  display: inline-flex;
}
.llm-audit-single .subtab-badge.found {
  color: #22c55e;
}
.llm-audit-single .subtab-badge.not-found {
  color: #ef4444;
}
.llm-audit-single .provider-subtab-content {
  display: none;
  margin-top: 0.75rem;
}
.llm-audit-single .provider-subtab-content.active {
  display: block;
}
.llm-audit-single .provider-result-card {
  background: #fefaf9;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.llm-audit-single .provider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.llm-audit-single .provider-header h5 {
  margin: 0;
  font-size: 1rem;
}
.llm-audit-single .presence-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.llm-audit-single .presence-badge.found {
  color: #166534;
}
.llm-audit-single .presence-badge.not-found {
  color: #991b1b;
}
.llm-audit-single .presence-badge .icon-inline {
  width: 1rem;
  height: 1rem;
}
.llm-audit-single .prompt-analysis .urls-with-text-cards-wrapper {
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.llm-audit-single .prompt-analysis .urls-with-text-cards-wrapper strong {
  display: block;
  margin-bottom: 0.5rem;
}
.llm-audit-single .prompt-analysis .urls-with-text-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
}
.llm-audit-single .prompt-analysis .url-card {
  background: #fff;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.llm-audit-single .prompt-analysis .url-card__link {
  font-size: 0.8125rem;
  word-break: break-all;
  color: #F99584;
  text-decoration: underline;
  line-height: 1.35;
}
.llm-audit-single .prompt-analysis .url-card__link:hover {
  text-decoration: none;
}
.llm-audit-single .prompt-analysis .url-card__text {
  margin: 0;
  font-size: 0.8125rem;
  color: #2d2524;
  word-break: break-word;
  white-space: pre-wrap;
  line-height: 1.4;
  flex: 1;
}
@media (max-width: 900px) {
  .llm-audit-single .prompt-analysis .urls-with-text-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .llm-audit-single .prompt-analysis .urls-with-text-cards {
    grid-template-columns: 1fr;
  }
}
.llm-audit-single .prompt-analysis .sites-found {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.llm-audit-single .prompt-analysis .sites-found .competitor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.llm-audit-single .prompt-analysis .competitor-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #2d2524;
}
.llm-audit-single .prompt-analysis .competitor-tag-link {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.llm-audit-single .prompt-analysis .competitor-tag-link:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
}
.llm-audit-single .prompt-analysis .competitor-tag-project {
  background: #dcfce7;
  border-color: #86efac;
  color: #166534;
}
.llm-audit-single .prompt-analysis .llm-text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
}
.llm-audit-single .prompt-analysis .llm-text strong {
  display: block;
  margin-bottom: 0.35rem;
}
.llm-audit-single .prompt-analysis .text-content {
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  max-height: 420px;
  overflow: auto;
  font-size: 0.875rem;
  line-height: 1.5;
}
.llm-audit-single .prompt-analysis .text-content p, .llm-audit-single .prompt-analysis .text-content ul, .llm-audit-single .prompt-analysis .text-content ol, .llm-audit-single .prompt-analysis .text-content h1, .llm-audit-single .prompt-analysis .text-content h2, .llm-audit-single .prompt-analysis .text-content h3, .llm-audit-single .prompt-analysis .text-content h4, .llm-audit-single .prompt-analysis .text-content h5, .llm-audit-single .prompt-analysis .text-content h6, .llm-audit-single .prompt-analysis .text-content table, .llm-audit-single .prompt-analysis .text-content blockquote {
  margin: 0.5rem 0;
}
.llm-audit-single .prompt-analysis .text-content h1 {
  font-size: 1.25rem;
}
.llm-audit-single .prompt-analysis .text-content h2 {
  font-size: 1.125rem;
}
.llm-audit-single .prompt-analysis .text-content h3, .llm-audit-single .prompt-analysis .text-content h4, .llm-audit-single .prompt-analysis .text-content h5, .llm-audit-single .prompt-analysis .text-content h6 {
  font-size: 1rem;
}
.llm-audit-single .prompt-analysis .text-content ul {
  padding-left: 1.25rem;
}
.llm-audit-single .prompt-analysis .text-content ol {
  padding-left: 1.25rem;
}
.llm-audit-single .prompt-analysis .text-content a {
  color: var(--bs-link-color, #0d6efd);
  text-decoration: underline;
}
.llm-audit-single .prompt-analysis .text-content a:hover {
  text-decoration: none;
}
.llm-audit-single .prompt-analysis .text-content code {
  padding: 0.15em 0.35em;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: 0.9em;
}
.llm-audit-single .prompt-analysis .text-content pre {
  overflow-x: auto;
}
.llm-audit-single .prompt-analysis .text-content pre code {
  padding: 0;
  background: none;
}
.llm-audit-single .prompt-analysis .text-content blockquote {
  padding-left: 1rem;
  border-left: 4px solid #f5e0dc;
  color: #7d6e6b;
}
.llm-audit-single .prompt-analysis .text-content table {
  border-collapse: collapse;
  width: 100%;
}
.llm-audit-single .prompt-analysis .text-content th, .llm-audit-single .prompt-analysis .text-content td {
  border: 1px solid #f5e0dc;
  padding: 0.35rem 0.5rem;
  text-align: left;
}
.llm-audit-single .prompt-analysis .text-content th {
  background: #f8fafc;
  font-weight: 600;
}
.llm-audit-single .prompt-analysis .text-content .no-data {
  margin: 0;
  color: #7d6e6b;
}
.llm-audit-single .no-data {
  margin: 0;
  color: #7d6e6b;
  font-size: 0.875rem;
}
.llm-audit-single .admin-dashboard--section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f5e0dc;
}

.company-info-table-wrap {
  margin-bottom: 1.5rem;
}
.company-info-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
}

.company-social-global-themes-card {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

textarea.company-social-global-themes {
  width: 100%;
  max-width: 100%;
  min-height: 5.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  resize: vertical;
}

.admin-table--linkedin-profiles {
  min-width: 720px;
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
}
.company-info-table th,
.company-info-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.company-info-table tr:last-child th,
.company-info-table tr:last-child td {
  border-bottom: 0;
}
.company-info-table th {
  font-weight: 600;
  color: #7d6e6b;
  font-size: 0.875rem;
  width: 12rem;
  white-space: nowrap;
}
.company-info-table .company-info-table__statut-th {
  font-weight: 600;
  vertical-align: middle;
}
.company-info-table .company-info-table__statut-sub {
  font-size: 0.8125rem;
  color: #7d6e6b;
  vertical-align: middle;
}
.company-info-table td {
  color: #2d2524;
  line-height: 1.5;
}
.company-info-table td a[href^=http] {
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
}
.company-info-table td a[href^=http]:hover {
  text-decoration: underline;
}

.company-show-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2524;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid #f5e0dc;
}

.company-show-section {
  margin-top: 2rem;
}
.company-show-section:first-of-type {
  margin-top: 1.5rem;
}

.company-show-section__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
  letter-spacing: -0.02em;
}

.company-tabs {
  margin-top: 1.5rem;
}

.company-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #f5e0dc;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.company-tabs__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.company-tabs__tab {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7d6e6b;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.company-tabs__tab:hover {
  color: #2d2524;
}

.company-tabs:has(#company-tab-concurrents:checked) .company-tabs__nav label[for=company-tab-concurrents],
.company-tabs:has(#company-tab-company-site:checked) .company-tabs__nav label[for=company-tab-company-site],
.company-tabs:has(#company-tab-suivi:checked) .company-tabs__nav label[for=company-tab-suivi],
.company-tabs:has(#company-tab-seo:checked) .company-tabs__nav label[for=company-tab-seo],
.company-tabs:has(#company-tab-audits:checked) .company-tabs__nav label[for=company-tab-audits],
.company-tabs:has(#company-tab-social:checked) .company-tabs__nav label[for=company-tab-social],
.company-tabs:has(#company-tab-leads:checked) .company-tabs__nav label[for=company-tab-leads],
.company-tabs:has(#company-tab-redactionnel:checked) .company-tabs__nav label[for=company-tab-redactionnel] {
  color: #F99584;
  border-bottom-color: #F99584;
}

.company-tabs__panels {
  margin-top: 0;
  padding-top: 1.25rem;
}

.company-tabs__panel {
  display: none;
}

.company-tabs:has(#company-tab-concurrents:checked) .company-tabs__panel--concurrents,
.company-tabs:has(#company-tab-company-site:checked) .company-tabs__panel--company-site,
.company-tabs:has(#company-tab-suivi:checked) .company-tabs__panel--suivi,
.company-tabs:has(#company-tab-seo:checked) .company-tabs__panel--seo,
.company-tabs:has(#company-tab-audits:checked) .company-tabs__panel--audits,
.company-tabs:has(#company-tab-social:checked) .company-tabs__panel--social,
.company-tabs:has(#company-tab-leads:checked) .company-tabs__panel--leads,
.company-tabs:has(#company-tab-redactionnel:checked) .company-tabs__panel--redactionnel {
  display: block;
}

.company-edit-tabs {
  margin-top: 1rem;
}

.company-edit-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  border-bottom: 2px solid #f5e0dc;
  margin-bottom: 1rem;
}

.company-edit-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.95rem;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7d6e6b;
  cursor: pointer;
  margin-bottom: -2px;
}

.company-edit-tabs__tab.is-active {
  color: #F99584;
  border-bottom-color: #F99584;
}

.company-edit-tabs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.company-edit-tabs__badge--ok {
  color: #1f8a4c;
  background: rgba(31, 138, 76, 0.14);
}

.company-edit-tabs__badge--over {
  color: #cc3f34;
  background: rgba(204, 63, 52, 0.14);
}

.company-edit-tabs__badge--neutral {
  color: #7d6e6b;
  background: rgba(107, 114, 128, 0.14);
}

.company-edit-tabs__panel {
  display: none;
}

.company-edit-tabs__panel.is-active {
  display: block;
}

.company-quota-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.company-quota-hint__count {
  font-variant-numeric: tabular-nums;
}

.company-quota-hint--ok {
  color: #1f8a4c;
}

.company-quota-hint--over {
  color: #cc3f34;
}

.company-quota-hint--neutral {
  color: #7d6e6b;
}

.geo-audit-card__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-bottom: 1px solid #f5e0dc;
  background: transparent;
  color: #2d2524;
  text-align: left;
  cursor: pointer;
}

.geo-audit-card__summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  min-width: 0;
}

.geo-audit-card__chevron {
  display: inline-flex;
  flex-shrink: 0;
  color: #7d6e6b;
  transition: transform 0.2s ease;
}

.geo-audit-card.is-expanded .geo-audit-card__chevron {
  transform: rotate(180deg);
}

.geo-audit-card__body {
  padding: 0.75rem 0.9rem 0.9rem;
}

.geo-audit-card.is-collapsed .geo-audit-card__body {
  display: none;
}

.geo-audit-card.is-collapsed .geo-audit-card__toggle {
  border-bottom: 0;
}

.geo-audit-card__danger {
  margin-top: 1.25rem;
}

.admin-main__content .admin-dashboard.editorial-edit-layout {
  max-width: none !important;
  width: 100%;
}

.admin-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
}
@media (min-width: 960px) {
  .admin-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-grid {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    gap: 1.5rem;
  }
}

.admin-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-form,
.admin-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-sidebar {
  min-width: 0;
}

.editorial-linkedin-posts {
  margin-top: 0.85rem;
}

.editorial-linkedin-posts #editorial-linkedin-posts-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.55rem;
}

.editorial-linkedin-card {
  border: 1px solid #d9e6f7;
  border-radius: 14px;
  background: #f4f8fd;
  padding: 0.85rem 0.9rem;
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.08);
}

.editorial-linkedin-card__header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}

.editorial-linkedin-card__avatar {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: -0.01em;
  color: #fff;
  background: #0a66c2;
  flex-shrink: 0;
}

.editorial-linkedin-card__author {
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1f2937;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editorial-linkedin-card__meta {
  margin-left: auto;
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

.editorial-linkedin-card__body {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.48;
  font-size: 0.9rem;
  color: #243447;
}

.editorial-linkedin-card__actions {
  margin-top: 0.65rem;
  display: flex;
  justify-content: flex-end;
}

.editorial-quill-mount {
  margin-top: 0.25rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.editorial-quill-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.editorial-word-counter {
  font-size: 0.8125rem;
  color: #7d6e6b;
}

.editorial-quill-editor {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.editorial-quill-editor .ql-toolbar.ql-snow {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-color: #f5e0dc;
  font-family: inherit;
}

.editorial-quill-editor .ql-toolbar .ql-custom-action {
  width: auto;
  padding: 0 0.45rem;
  font-size: 0.82rem;
  color: #7d6e6b;
}

.editorial-quill-editor .ql-toolbar .ql-custom-action:hover {
  color: #F99584;
}

.editorial-quill-editor .ql-container.ql-snow {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-color: #f5e0dc;
  min-height: 320px;
  font-size: 0.9375rem;
  font-family: inherit;
}

.editorial-quill-editor .ql-editor {
  min-height: 240px;
}

.editorial-quill-editor .ql-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  table-layout: auto;
}

.editorial-quill-editor .ql-editor th,
.editorial-quill-editor .ql-editor td {
  border: 1px solid #f5e0dc;
  padding: 0.42rem 0.5rem;
  vertical-align: top;
}

.editorial-quill-editor .ql-editor th {
  font-weight: 700;
  background: #fdf2f1;
}

.editorial-quill-editor .ql-editor.ql-blank::before {
  font-style: normal;
  color: #7d6e6b;
}

.editorial-analysis__hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem 1.1rem;
  align-items: start;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem;
  background: #fdf2f1;
  border-radius: 12px;
  border: 1px solid #f5e0dc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.editorial-analysis__hero-text {
  min-width: 0;
}

.editorial-analysis__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
}

.editorial-analysis__hero-note {
  margin: 0.45rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #7d6e6b;
}

.editorial-analysis__score-block {
  text-align: center;
  flex-shrink: 0;
  justify-self: end;
}

.editorial-analysis__score-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7d6e6b;
}

.editorial-analysis__gauge {
  position: relative;
  width: 92px;
  height: 92px;
  margin: 0.4rem auto 0;
}

.editorial-analysis__gauge-svg {
  display: block;
  width: 92px;
  height: 92px;
}

.editorial-analysis__gauge-bg {
  stroke: rgba(0, 0, 0, 0.06);
}

.editorial-analysis__gauge-progress {
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s ease;
}

.editorial-analysis__gauge--good .editorial-analysis__gauge-progress {
  stroke: #22c55e;
}

.editorial-analysis__gauge--warn .editorial-analysis__gauge-progress {
  stroke: #f59e0b;
}

.editorial-analysis__gauge--bad .editorial-analysis__gauge-progress {
  stroke: #ef4444;
}

.editorial-analysis__gauge-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
}

.editorial-analysis__score-tier {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2d2524;
}

.editorial-analysis__metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.1rem;
}

.editorial-analysis__metric-tile {
  min-width: 0;
  padding: 0.55rem 0.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.editorial-analysis__metric-tile-label {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.3;
  color: #7d6e6b;
}

.editorial-analysis__metric-tile-value {
  display: block;
  margin-top: 0.2rem;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #2d2524;
}

.editorial-analysis__kw-panel {
  margin-bottom: 1rem;
}

.editorial-analysis__kw-heading {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #7d6e6b;
}

.editorial-analysis__kw-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.editorial-analysis__kw-card {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #f5e0dc;
  border-left-width: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.editorial-analysis__kw-card--good {
  border-left-color: #22c55e;
}

.editorial-analysis__kw-card--warn {
  border-left-color: #f59e0b;
}

.editorial-analysis__kw-card--bad {
  border-left-color: #ef4444;
}

.editorial-analysis__kw-phrase {
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.editorial-analysis__kw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  align-items: center;
}

.editorial-analysis__kw-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  padding: 0.18rem 0.42rem;
  font-size: 0.72rem;
  line-height: 1.2;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.045);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.editorial-analysis__kw-chip-label {
  font-weight: 500;
  color: #7d6e6b;
}

.editorial-analysis__kw-chip-val {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #2d2524;
}

.editorial-analysis__kw-chip--yes {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.22);
}

.editorial-analysis__kw-chip--no {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}

.editorial-analysis__kw-chip--no .editorial-analysis__kw-chip-val {
  color: #7d6e6b;
  font-weight: 500;
}

.editorial-analysis__kw-pill {
  margin-left: auto;
}
.editorial-analysis__kw-pill .admin-pill {
  font-size: 0.6875rem;
  padding: 0.2rem 0.45rem;
}

.editorial-analysis__empty-kw {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #7d6e6b;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 10px;
  border: 1px dashed #f5e0dc;
}

@media (max-width: 380px) {
  .editorial-analysis__hero {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
  .editorial-analysis__score-block {
    justify-self: center;
  }
  .editorial-analysis__metric-grid {
    grid-template-columns: 1fr;
  }
}
.editorial-analysis__tips {
  margin-bottom: 0.75rem;
}
.editorial-analysis__tips ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
}

.editorial-analysis__actions {
  margin: 0;
}

.editorial-delete-form {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f5e0dc;
}

.editorial-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.editorial-ai-modal {
  padding: 0;
  margin: auto;
  border: 0 !important;
  outline: none;
  border-radius: 16px;
  max-width: min(640px, 100vw - 2rem);
  width: 100%;
  background: #fff;
  color: #2d2524;
  box-shadow: 0 0 0 1px rgba(249, 149, 132, 0.22), 0 18px 48px rgba(18, 12, 10, 0.14);
}
.editorial-ai-modal::backdrop {
  background: rgba(18, 12, 10, 0.45);
}
.editorial-ai-modal:focus {
  outline: none;
}
.editorial-ai-modal:focus-visible {
  outline: 2px solid #F99584;
  outline-offset: 2px;
}

.editorial-ai-modal__panel {
  padding: 1.25rem 1.35rem;
}

.editorial-ai-modal__title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.editorial-ai-modal__hint {
  font-size: 0.875rem;
  color: #7d6e6b;
  margin: 0 0 0.75rem;
}

.editorial-ai-modal__loading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fefaf9;
  border: 1px solid #f5e0dc;
}

.editorial-ai-modal__loading[hidden] {
  display: none !important;
}

.editorial-ai-modal__loading-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #2d2524;
}

.editorial-ai-modal__spinner {
  box-sizing: border-box;
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  border: 2px solid #f5e0dc;
  border-top-color: #F99584;
  border-radius: 50%;
  animation: editorial-ai-modal-spin 0.65s linear infinite;
}

@keyframes editorial-ai-modal-spin {
  to {
    transform: rotate(360deg);
  }
}
.editorial-ai-modal__preview-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7d6e6b;
  margin: 0.75rem 0 0.35rem;
}

.editorial-ai-modal__preview-title {
  margin: 0;
  font-weight: 600;
  font-size: 1rem;
}

.editorial-ai-modal__preview--solo {
  margin: 0;
}

.editorial-ai-modal__preview--solo .editorial-ai-modal__preview-body {
  max-height: min(52vh, 420px);
}

.editorial-ai-modal__preview-body {
  max-height: min(42vh, 360px);
  overflow: auto;
  padding: 0.75rem;
  border: 1px solid #f5e0dc;
  border-radius: 12px;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.5;
}
.editorial-ai-modal__preview-body :where(h2, h3) {
  margin: 0.75rem 0 0.35rem;
  font-size: 1rem;
}
.editorial-ai-modal__preview-body :where(p, ul, ol) {
  margin: 0.35rem 0;
}

.editorial-ai-modal__error {
  color: #991b1b;
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}

.editorial-ai-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #f5e0dc;
}

.admin-form-card.editorial-edit-form form > div {
  margin-bottom: 1rem;
}
.admin-form-card.editorial-edit-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d2524;
  margin-bottom: 0.375rem;
}
.admin-form-card.editorial-edit-form ul.help-text,
.admin-form-card.editorial-edit-form .help-text,
.admin-form-card.editorial-edit-form small.form-text,
.admin-form-card.editorial-edit-form p.help-text {
  display: block;
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #7d6e6b;
}
.admin-form-card.editorial-edit-form input[type=email],
.admin-form-card.editorial-edit-form input[type=number],
.admin-form-card.editorial-edit-form input[type=password],
.admin-form-card.editorial-edit-form input[type=text],
.admin-form-card.editorial-edit-form input[type=url],
.admin-form-card.editorial-edit-form input[type=search],
.admin-form-card.editorial-edit-form input[type=tel],
.admin-form-card.editorial-edit-form select,
.admin-form-card.editorial-edit-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.55rem 0.85rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.45;
  color: #2d2524;
  border: 1px solid #f5e0dc;
  border-radius: 14px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.admin-form-card.editorial-edit-form input[type=email]:focus,
.admin-form-card.editorial-edit-form input[type=number]:focus,
.admin-form-card.editorial-edit-form input[type=password]:focus,
.admin-form-card.editorial-edit-form input[type=text]:focus,
.admin-form-card.editorial-edit-form input[type=url]:focus,
.admin-form-card.editorial-edit-form input[type=search]:focus,
.admin-form-card.editorial-edit-form input[type=tel]:focus,
.admin-form-card.editorial-edit-form select:focus,
.admin-form-card.editorial-edit-form textarea:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.22);
}
.admin-form-card.editorial-edit-form input[type=email]::placeholder,
.admin-form-card.editorial-edit-form input[type=number]::placeholder,
.admin-form-card.editorial-edit-form input[type=password]::placeholder,
.admin-form-card.editorial-edit-form input[type=text]::placeholder,
.admin-form-card.editorial-edit-form input[type=url]::placeholder,
.admin-form-card.editorial-edit-form input[type=search]::placeholder,
.admin-form-card.editorial-edit-form input[type=tel]::placeholder,
.admin-form-card.editorial-edit-form select::placeholder,
.admin-form-card.editorial-edit-form textarea::placeholder {
  color: #7d6e6b;
  opacity: 1;
}
.admin-form-card.editorial-edit-form textarea {
  min-height: 6.75rem;
  resize: vertical;
}
.admin-form-card.editorial-edit-form input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.admin-form-card.editorial-edit-form input[type=number]::-webkit-outer-spin-button, .admin-form-card.editorial-edit-form input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.editorial-analysis__full-link {
  margin: 0.75rem 0 0;
}

.admin-main__content .admin-dashboard.editorial-dashboard {
  max-width: none !important;
  width: 100%;
}

.editorial-dashboard__hero {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .editorial-dashboard__hero {
    grid-template-columns: minmax(220px, 280px) 1fr;
    align-items: stretch;
  }
}

.editorial-dashboard__score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.editorial-dashboard__gauge {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 0.75rem;
}

.editorial-dashboard__gauge-svg {
  display: block;
  width: 120px;
  height: 120px;
}

.editorial-dashboard__gauge-bg {
  stroke: rgba(0, 0, 0, 0.06);
}

.editorial-dashboard__gauge-progress {
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s ease;
}

.editorial-dashboard__gauge--good .editorial-dashboard__gauge-progress {
  stroke: #22c55e;
}

.editorial-dashboard__gauge--warn .editorial-dashboard__gauge-progress {
  stroke: #f59e0b;
}

.editorial-dashboard__gauge--bad .editorial-dashboard__gauge-progress {
  stroke: #ef4444;
}

.editorial-dashboard__gauge-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
}

.editorial-dashboard__score-label {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
}

.editorial-dashboard__score-sub {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: #7d6e6b;
}

.editorial-dashboard__metrics-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .editorial-dashboard__metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.editorial-dashboard__metric {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.editorial-dashboard__metric-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #7d6e6b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.editorial-dashboard__metric-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
}

.editorial-dashboard__section {
  margin-bottom: 1.25rem;
  padding: 1.35rem 1.5rem;
}

.editorial-dashboard__section-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
}

.editorial-dashboard__criteria {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-dashboard__criterion-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.editorial-dashboard__criterion-label {
  font-size: 0.9375rem;
  color: #2d2524;
}

.editorial-dashboard__criterion-pts {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7d6e6b;
  font-variant-numeric: tabular-nums;
}

.editorial-dashboard__criterion-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.editorial-dashboard__criterion-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.35s ease;
}

.editorial-dashboard__criterion--good .editorial-dashboard__criterion-fill {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.editorial-dashboard__criterion--warn .editorial-dashboard__criterion-fill {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.editorial-dashboard__criterion--bad .editorial-dashboard__criterion-fill {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

.editorial-dashboard__criterion--neutral .editorial-dashboard__criterion-fill {
  background: rgba(249, 149, 132, 0.45);
}

.editorial-dashboard__reco-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.editorial-dashboard__reco {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.editorial-dashboard__reco-icon {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
}

.editorial-dashboard__reco--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #166534;
}
.editorial-dashboard__reco--success .editorial-dashboard__reco-icon {
  color: #22c55e;
}

.editorial-dashboard__reco--warning {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #92400e;
}
.editorial-dashboard__reco--warning .editorial-dashboard__reco-icon {
  color: #d97706;
}

.editorial-dashboard__reco--info {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.22);
  color: #1e40af;
}
.editorial-dashboard__reco--info .editorial-dashboard__reco-icon {
  color: #3b82f6;
}

.editorial-dashboard__bottom {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 960px) {
  .editorial-dashboard__bottom {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.editorial-dashboard__terms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.editorial-dashboard__term-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.editorial-dashboard__term-rank {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7d6e6b;
  width: 1.25rem;
  text-align: right;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.editorial-dashboard__term-body {
  flex: 1;
  min-width: 0;
}

.editorial-dashboard__term-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.editorial-dashboard__term-name {
  font-size: 0.9375rem;
  color: #2d2524;
}

.editorial-dashboard__term-count {
  font-size: 0.8125rem;
  color: #7d6e6b;
  font-variant-numeric: tabular-nums;
}

.editorial-dashboard__term-bar-wrap {
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.editorial-dashboard__term-bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #F99584, #fbb7ab);
}

.editorial-dashboard__term-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.editorial-dashboard__htag {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.editorial-dashboard__htag--1 {
  background: rgba(99, 102, 241, 0.15);
  color: #4338ca;
}

.editorial-dashboard__htag--2 {
  background: rgba(139, 92, 246, 0.15);
  color: #6d28d9;
}

.editorial-dashboard__htag--3 {
  background: rgba(236, 72, 153, 0.12);
  color: #be185d;
}

.editorial-dashboard__outline-tree {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid #f5e0dc;
}

.editorial-dashboard__outline-item {
  position: relative;
  padding: 0.45rem 0 0.45rem 1rem;
  margin-left: 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #2d2524;
}

.editorial-dashboard__outline-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  margin-right: 0.5rem;
  vertical-align: middle;
  background: rgba(99, 102, 241, 0.12);
  color: #4338ca;
}

.editorial-dashboard__outline-item--h1 .editorial-dashboard__outline-badge {
  background: rgba(99, 102, 241, 0.2);
}

.editorial-dashboard__outline-item--h2 .editorial-dashboard__outline-badge {
  background: rgba(139, 92, 246, 0.15);
  color: #6d28d9;
}

.editorial-dashboard__outline-item--h3 .editorial-dashboard__outline-badge,
.editorial-dashboard__outline-item--h4 .editorial-dashboard__outline-badge,
.editorial-dashboard__outline-item--h5 .editorial-dashboard__outline-badge,
.editorial-dashboard__outline-item--h6 .editorial-dashboard__outline-badge {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
}

.editorial-dashboard__outline-item--h2 {
  padding-left: 1.35rem;
}

.editorial-dashboard__outline-item--h3 {
  padding-left: 1.85rem;
}

.editorial-dashboard__outline-item--h4 {
  padding-left: 2.35rem;
}

.editorial-dashboard__outline-item--h5 {
  padding-left: 2.85rem;
}

.editorial-dashboard__outline-item--h6 {
  padding-left: 3.35rem;
}

.editorial-dashboard__empty {
  margin: 0;
  font-size: 0.9375rem;
  color: #7d6e6b;
}

.company-tabs__panel .company-show-section {
  margin-top: 1.25rem;
}
.company-tabs__panel .company-show-section:first-child {
  margin-top: 0;
}

.social-show-tabs {
  margin-top: 1.25rem;
}

.social-show-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #f5e0dc;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.social-show-tabs__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-show-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7d6e6b;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.social-show-tabs__tab:hover {
  color: #2d2524;
}

.social-show-tabs__badge {
  display: inline-block;
  min-width: 1.5rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #F99584;
  background: #fef0ed;
  border: 1px solid #fce0da;
  border-radius: 999px;
}

.social-show-tabs:has(#social-show-tab-posts:checked) .social-show-tabs__nav label[for=social-show-tab-posts],
.social-show-tabs:has(#social-show-tab-historique:checked) .social-show-tabs__nav label[for=social-show-tab-historique] {
  color: #F99584;
  border-bottom-color: #F99584;
}

.social-show-tabs__panels {
  margin-top: 0;
  padding-top: 1.25rem;
}

.social-show-tabs__panel {
  display: none;
}

.social-show-tabs:has(#social-show-tab-posts:checked) .social-show-tabs__panel--posts,
.social-show-tabs:has(#social-show-tab-historique:checked) .social-show-tabs__panel--historique {
  display: block;
}

.company-site-tabs:has(#company-site-tab-pillars:checked) .social-show-tabs__nav label[for=company-site-tab-pillars],
.company-site-tabs:has(#company-site-tab-crawls:checked) .social-show-tabs__nav label[for=company-site-tab-crawls],
.company-site-tabs:has(#company-site-tab-new:checked) .social-show-tabs__nav label[for=company-site-tab-new] {
  color: #F99584;
  border-bottom-color: #F99584;
}

.company-site-tabs:has(#company-site-tab-pillars:checked) .company-site-tabs__panel--pillars,
.company-site-tabs:has(#company-site-tab-crawls:checked) .company-site-tabs__panel--crawls,
.company-site-tabs:has(#company-site-tab-new:checked) .company-site-tabs__panel--new {
  display: block;
}

.pillar-instant-tabs:has(#pillar-instant-tab-issues:checked) .social-show-tabs__nav label[for=pillar-instant-tab-issues],
.pillar-instant-tabs:has(#pillar-instant-tab-meta:checked) .social-show-tabs__nav label[for=pillar-instant-tab-meta],
.pillar-instant-tabs:has(#pillar-instant-tab-structure:checked) .social-show-tabs__nav label[for=pillar-instant-tab-structure],
.pillar-instant-tabs:has(#pillar-instant-tab-perf:checked) .social-show-tabs__nav label[for=pillar-instant-tab-perf],
.pillar-instant-tabs:has(#pillar-instant-tab-controls:checked) .social-show-tabs__nav label[for=pillar-instant-tab-controls] {
  color: #F99584;
  border-bottom-color: #F99584;
}

.pillar-instant-tabs:has(#pillar-instant-tab-issues:checked) .pillar-instant-tabs__panel--issues,
.pillar-instant-tabs:has(#pillar-instant-tab-meta:checked) .pillar-instant-tabs__panel--meta,
.pillar-instant-tabs:has(#pillar-instant-tab-structure:checked) .pillar-instant-tabs__panel--structure,
.pillar-instant-tabs:has(#pillar-instant-tab-perf:checked) .pillar-instant-tabs__panel--perf,
.pillar-instant-tabs:has(#pillar-instant-tab-controls:checked) .pillar-instant-tabs__panel--controls {
  display: block;
}

.company-site-tabs__url {
  color: #2d2524;
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 110, 107, 0.35);
}
.company-site-tabs__url:hover {
  color: #F99584;
  border-bottom-color: rgba(249, 149, 132, 0.45);
}

.admin-main__content .company-site-tabs .competitor-crawls-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid #f5e0dc;
}

.admin-main__content .company-site-tabs .competitor-crawls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.admin-main__content .company-site-tabs .competitor-crawls-table thead {
  background: linear-gradient(180deg, #fef0ed 0%, rgba(249, 149, 132, 0.06) 100%);
}
.admin-main__content .company-site-tabs .competitor-crawls-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #F99584;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #f5e0dc;
}
.admin-main__content .company-site-tabs .competitor-crawls-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f5e0dc;
  color: #2d2524;
  vertical-align: top;
}
.admin-main__content .company-site-tabs .competitor-crawls-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-main__content .company-site-tabs .competitor-crawls-table tbody tr:hover {
  background: rgba(249, 149, 132, 0.04);
}

.admin-main__content .company-show-section--pillar-list .competitor-crawls-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid #f5e0dc;
}

.admin-main__content .company-show-section--pillar-list .competitor-crawls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.admin-main__content .company-show-section--pillar-list .competitor-crawls-table thead {
  background: linear-gradient(180deg, #fef0ed 0%, rgba(249, 149, 132, 0.06) 100%);
}
.admin-main__content .company-show-section--pillar-list .competitor-crawls-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #F99584;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #f5e0dc;
}
.admin-main__content .company-show-section--pillar-list .competitor-crawls-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f5e0dc;
  color: #2d2524;
  vertical-align: top;
}
.admin-main__content .company-show-section--pillar-list .competitor-crawls-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-main__content .company-show-section--pillar-list .competitor-crawls-table tbody tr:hover {
  background: rgba(249, 149, 132, 0.04);
}

.admin-main__content .pillar-row--stale td {
  background: rgba(249, 149, 132, 0.05);
}

.admin-main__content .pillar-stale-marker {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #F99584;
  background: #fef0ed;
  border: 1px solid #fce0da;
}

/* Jauge circulaire score On-Page (0–100) — sans bloc / fond */
.admin-main__content .pillar-onpage-gauge,
.app-main__content .pillar-onpage-gauge {
  --pillar-gauge-c: 238.761;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto;
  vertical-align: middle;
}
.admin-main__content .pillar-onpage-gauge--lg,
.app-main__content .pillar-onpage-gauge--lg {
  width: 5.25rem;
  height: 5.25rem;
}
.admin-main__content .pillar-onpage-gauge--lg .pillar-onpage-gauge__value,
.app-main__content .pillar-onpage-gauge--lg .pillar-onpage-gauge__value {
  font-size: 1.2rem;
}
.admin-main__content .pillar-onpage-gauge--empty .pillar-onpage-gauge__value--na,
.app-main__content .pillar-onpage-gauge--empty .pillar-onpage-gauge__value--na {
  font-size: 0.95rem;
  font-weight: 600;
  color: #7d6e6b;
}
.admin-main__content .pillar-onpage-gauge--lg.pillar-onpage-gauge--empty .pillar-onpage-gauge__value--na,
.app-main__content .pillar-onpage-gauge--lg.pillar-onpage-gauge--empty .pillar-onpage-gauge__value--na {
  font-size: 1.15rem;
}
.admin-main__content .pillar-onpage-gauge__svg,
.app-main__content .pillar-onpage-gauge__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.admin-main__content .pillar-onpage-gauge__track,
.app-main__content .pillar-onpage-gauge__track {
  fill: none;
  stroke: rgba(148, 163, 184, 0.4);
  stroke-width: 8;
}
.admin-main__content .pillar-onpage-gauge__arc,
.app-main__content .pillar-onpage-gauge__arc {
  fill: none;
  stroke: var(--pillar-gauge-stroke, #22c55e);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: var(--pillar-gauge-c);
  stroke-dashoffset: calc(var(--pillar-gauge-c) - var(--pillar-gauge-c) * var(--pillar-gauge-pct, 0) / 100);
  transition: stroke-dashoffset 0.45s ease;
}
.admin-main__content .pillar-onpage-gauge--good,
.app-main__content .pillar-onpage-gauge--good {
  --pillar-gauge-stroke: #22c55e;
}
.admin-main__content .pillar-onpage-gauge--warn,
.app-main__content .pillar-onpage-gauge--warn {
  --pillar-gauge-stroke: #f59e0b;
}
.admin-main__content .pillar-onpage-gauge--bad,
.app-main__content .pillar-onpage-gauge--bad {
  --pillar-gauge-stroke: #ef4444;
}
.admin-main__content .pillar-onpage-gauge__value,
.app-main__content .pillar-onpage-gauge__value {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 0.72rem;
  line-height: 1;
  color: #2d2524;
}

/* Rapport page pilier — lecture pédagogique */
.admin-main__content .pillar-report .pillar-report__header,
.app-main__content .pillar-report .pillar-report__header {
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.25rem;
}
.admin-main__content .pillar-report .pillar-report__title,
.app-main__content .pillar-report .pillar-report__title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.admin-main__content .pillar-report .pillar-report__url,
.app-main__content .pillar-report .pillar-report__url {
  margin: 0;
  word-break: break-all;
  color: #7d6e6b;
  font-size: 0.95rem;
}
.admin-main__content .pillar-report .pillar-report__meta-line,
.app-main__content .pillar-report .pillar-report__meta-line {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}
.admin-main__content .pillar-report .pillar-report__error,
.app-main__content .pillar-report .pillar-report__error {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}
.admin-main__content .pillar-report .pillar-report__pre,
.app-main__content .pillar-report .pillar-report__pre {
  max-height: 240px;
  overflow: auto;
  font-size: 0.8rem;
  margin-top: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
}
.admin-main__content .pillar-report .pillar-report__section,
.app-main__content .pillar-report .pillar-report__section {
  margin-bottom: 1.75rem;
}
.admin-main__content .pillar-report .pillar-report__section--in-tab,
.app-main__content .pillar-report .pillar-report__section--in-tab {
  margin-bottom: 1.35rem;
}
.admin-main__content .pillar-report .pillar-report__section--in-tab:last-child,
.app-main__content .pillar-report .pillar-report__section--in-tab:last-child {
  margin-bottom: 0;
}
.admin-main__content .pillar-report .pillar-report__detail-section .social-show-tabs,
.app-main__content .pillar-report .pillar-report__detail-section .social-show-tabs {
  margin-top: 0.35rem;
}
.admin-main__content .pillar-report .pillar-report__section-title,
.app-main__content .pillar-report .pillar-report__section-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.admin-main__content .pillar-report .pillar-report__section-title--warn,
.app-main__content .pillar-report .pillar-report__section-title--warn {
  color: #991b1b;
}
.admin-main__content .pillar-report .pillar-report__section-title-icon,
.app-main__content .pillar-report .pillar-report__section-title-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}
.admin-main__content .pillar-report .pillar-report__section-sub,
.app-main__content .pillar-report .pillar-report__section-sub {
  font-weight: 400;
  font-size: 0.85rem;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__section-lead,
.app-main__content .pillar-report .pillar-report__section-lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: #7d6e6b;
  line-height: 1.5;
  max-width: 52rem;
}
.admin-main__content .pillar-report .pillar-report__section--summary .pillar-report__summary-layout,
.app-main__content .pillar-report .pillar-report__section--summary .pillar-report__summary-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
}
.admin-main__content .pillar-report .pillar-report__summary-score,
.app-main__content .pillar-report .pillar-report__summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  min-width: 8rem;
}
.admin-main__content .pillar-report .pillar-report__score-verdict,
.app-main__content .pillar-report .pillar-report__score-verdict {
  margin: 0.25rem 0 0;
  font-weight: 700;
  font-size: 0.98rem;
  color: #2d2524;
  max-width: 14rem;
  line-height: 1.35;
}
.admin-main__content .pillar-report .pillar-report__score-verdict--muted,
.app-main__content .pillar-report .pillar-report__score-verdict--muted {
  font-weight: 600;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__score-hint,
.app-main__content .pillar-report .pillar-report__score-hint {
  margin: 0;
  font-size: 0.78rem;
  color: #7d6e6b;
  max-width: 14rem;
  line-height: 1.35;
}
.admin-main__content .pillar-report .pillar-report__highlights,
.app-main__content .pillar-report .pillar-report__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  min-width: min(100%, 320px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.admin-main__content .pillar-report .pillar-report__highlight,
.app-main__content .pillar-report .pillar-report__highlight {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.92rem;
  line-height: 1.45;
}
.admin-main__content .pillar-report .pillar-report__highlight--ok,
.app-main__content .pillar-report .pillar-report__highlight--ok {
  /* fond neutre : l’état OK reste visible via l’icône / le texte, pas un bloc vert */
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.06);
}
.admin-main__content .pillar-report .pillar-report__highlight--bad,
.app-main__content .pillar-report .pillar-report__highlight--bad {
  background: #fee2e2;
  border-color: rgba(239, 68, 68, 0.35);
}
.admin-main__content .pillar-report .pillar-report__highlight-icon,
.app-main__content .pillar-report .pillar-report__highlight-icon {
  flex-shrink: 0;
  line-height: 0;
  margin-top: 0.1rem;
}
.admin-main__content .pillar-report .pillar-report__icon,
.app-main__content .pillar-report .pillar-report__icon {
  width: 1.15rem;
  height: 1.15rem;
}
.admin-main__content .pillar-report .pillar-report__icon--ok,
.app-main__content .pillar-report .pillar-report__icon--ok {
  color: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__icon--bad,
.app-main__content .pillar-report .pillar-report__icon--bad {
  color: #ef4444;
}
.admin-main__content .pillar-report .pillar-report__icon--warn,
.app-main__content .pillar-report .pillar-report__icon--warn {
  color: #f59e0b;
}
.admin-main__content .pillar-report .pillar-report__icon--muted,
.app-main__content .pillar-report .pillar-report__icon--muted {
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__highlight-text strong,
.app-main__content .pillar-report .pillar-report__highlight-text strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__highlight-value,
.app-main__content .pillar-report .pillar-report__highlight-value {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.admin-main__content .pillar-report .pillar-report__issue-list,
.app-main__content .pillar-report .pillar-report__issue-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.55;
  font-size: 0.95rem;
}
.admin-main__content .pillar-report .pillar-report__issue-list li,
.app-main__content .pillar-report .pillar-report__issue-list li {
  margin-bottom: 0.35rem;
}
.admin-main__content .pillar-report .pillar-report__lighthouse-grid,
.app-main__content .pillar-report .pillar-report__lighthouse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
.admin-main__content .pillar-report .pillar-report__lh-card,
.app-main__content .pillar-report .pillar-report__lh-card {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}
.admin-main__content .pillar-report .pillar-report__lh-card--ok,
.app-main__content .pillar-report .pillar-report__lh-card--ok {
  border-color: rgba(34, 197, 94, 0.4);
  background: #fff;
}
.admin-main__content .pillar-report .pillar-report__lh-card--warn,
.app-main__content .pillar-report .pillar-report__lh-card--warn {
  border-color: rgba(245, 158, 11, 0.55);
  background: #fef3c7;
}
.admin-main__content .pillar-report .pillar-report__lh-card--bad,
.app-main__content .pillar-report .pillar-report__lh-card--bad {
  border-color: rgba(239, 68, 68, 0.45);
  background: #fee2e2;
}
.admin-main__content .pillar-report .pillar-report__lh-card-top,
.app-main__content .pillar-report .pillar-report__lh-card-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__lh-score,
.app-main__content .pillar-report .pillar-report__lh-score {
  font-size: 1.65rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #2d2524;
}
.admin-main__content .pillar-report .pillar-report__meta-grid,
.app-main__content .pillar-report .pillar-report__meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.admin-main__content .pillar-report .pillar-report__subsection-title,
.app-main__content .pillar-report .pillar-report__subsection-title {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d2524;
}
.admin-main__content .pillar-report .pillar-report__checklist-ul,
.app-main__content .pillar-report .pillar-report__checklist-ul {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}
.admin-main__content .pillar-report .pillar-report__checkrow,
.app-main__content .pillar-report .pillar-report__checkrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.admin-main__content .pillar-report .pillar-report__checkrow:last-child,
.app-main__content .pillar-report .pillar-report__checkrow:last-child {
  border-bottom: 0;
}
.admin-main__content .pillar-report .pillar-report__checkrow--ok .pillar-report__checkrow-icon,
.app-main__content .pillar-report .pillar-report__checkrow--ok .pillar-report__checkrow-icon {
  color: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__checkrow--bad .pillar-report__checkrow-icon,
.app-main__content .pillar-report .pillar-report__checkrow--bad .pillar-report__checkrow-icon {
  color: #ef4444;
}
.admin-main__content .pillar-report .pillar-report__checkrow-icon,
.app-main__content .pillar-report .pillar-report__checkrow-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.admin-main__content .pillar-report .pillar-report__snippet,
.app-main__content .pillar-report .pillar-report__snippet {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #2d2524;
}
.admin-main__content .pillar-report .pillar-report__snippet--mono,
.app-main__content .pillar-report .pillar-report__snippet--mono {
  word-break: break-all;
  font-size: 0.82rem;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__stats-lead,
.app-main__content .pillar-report .pillar-report__stats-lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__stats-lead strong,
.app-main__content .pillar-report .pillar-report__stats-lead strong {
  color: #2d2524;
  font-weight: 600;
}
.admin-main__content .pillar-report .pillar-report__stats-list,
.app-main__content .pillar-report .pillar-report__stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}
.admin-main__content .pillar-report .pillar-report__stats-row,
.app-main__content .pillar-report .pillar-report__stats-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.45rem 0.65rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.admin-main__content .pillar-report .pillar-report__stats-row:last-child,
.app-main__content .pillar-report .pillar-report__stats-row:last-child {
  border-bottom: 0;
}
.admin-main__content .pillar-report .pillar-report__stats-ic,
.app-main__content .pillar-report .pillar-report__stats-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 1.2rem;
}
.admin-main__content .pillar-report .pillar-report__stats-ic-svg,
.app-main__content .pillar-report .pillar-report__stats-ic-svg {
  width: 1.05rem;
  height: 1.05rem;
}
.admin-main__content .pillar-report .pillar-report__stats-ic-svg--ok,
.app-main__content .pillar-report .pillar-report__stats-ic-svg--ok {
  color: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__stats-ic-svg--bad,
.app-main__content .pillar-report .pillar-report__stats-ic-svg--bad {
  color: #ef4444;
}
.admin-main__content .pillar-report .pillar-report__stats-ic-svg--na,
.app-main__content .pillar-report .pillar-report__stats-ic-svg--na {
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__stats-label,
.app-main__content .pillar-report .pillar-report__stats-label {
  color: #7d6e6b;
  min-width: 0;
}
.admin-main__content .pillar-report .pillar-report__stats-value,
.app-main__content .pillar-report .pillar-report__stats-value {
  font-weight: 700;
  color: #2d2524;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.admin-main__content .pillar-report .pillar-report__htag-label,
.app-main__content .pillar-report .pillar-report__htag-label {
  margin: 1rem 0 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__htag-label:first-child,
.app-main__content .pillar-report .pillar-report__htag-label:first-child {
  margin-top: 0;
}
.admin-main__content .pillar-report .pillar-report__htag-list,
.app-main__content .pillar-report .pillar-report__htag-list {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.admin-main__content .pillar-report .pillar-report__og-lead,
.app-main__content .pillar-report .pillar-report__og-lead {
  margin: 0 0 0.75rem;
  max-width: 48rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__og-lead strong,
.app-main__content .pillar-report .pillar-report__og-lead strong {
  color: #2d2524;
  font-weight: 600;
}
.admin-main__content .pillar-report .pillar-report__og-lead-note,
.app-main__content .pillar-report .pillar-report__og-lead-note {
  color: #166534;
  font-weight: 600;
}
.admin-main__content .pillar-report .pillar-report__og-card,
.app-main__content .pillar-report .pillar-report__og-card {
  padding: 0.55rem 0.65rem;
  overflow: hidden;
}
.admin-main__content .pillar-report .pillar-report__og-list,
.app-main__content .pillar-report .pillar-report__og-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.admin-main__content .pillar-report .pillar-report__og-row,
.app-main__content .pillar-report .pillar-report__og-row {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 0.4rem 0.5rem;
  align-items: start;
  padding: 0.32rem 0.42rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.022);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
  line-height: 1.32;
}
.admin-main__content .pillar-report .pillar-report__og-row--bad,
.app-main__content .pillar-report .pillar-report__og-row--bad {
  border-color: rgba(239, 68, 68, 0.2);
  background: rgba(254, 226, 226, 0.25);
}
.admin-main__content .pillar-report .pillar-report__og-ic,
.app-main__content .pillar-report .pillar-report__og-ic {
  line-height: 0;
  margin-top: 0.08rem;
}
.admin-main__content .pillar-report .pillar-report__og-ic-svg,
.app-main__content .pillar-report .pillar-report__og-ic-svg {
  width: 0.92rem;
  height: 0.92rem;
}
.admin-main__content .pillar-report .pillar-report__og-ic-svg--ok,
.app-main__content .pillar-report .pillar-report__og-ic-svg--ok {
  color: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__og-ic-svg--bad,
.app-main__content .pillar-report .pillar-report__og-ic-svg--bad {
  color: #ef4444;
}
.admin-main__content .pillar-report .pillar-report__og-key,
.app-main__content .pillar-report .pillar-report__og-key {
  display: inline-block;
  margin: 0;
  padding: 0.1rem 0.35rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: #F99584;
  background: rgba(249, 149, 132, 0.12);
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.admin-main__content .pillar-report .pillar-report__og-val,
.app-main__content .pillar-report .pillar-report__og-val {
  display: block;
  min-width: 0;
  color: #2d2524;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}
.admin-main__content .pillar-report .pillar-report__timing-wrap,
.app-main__content .pillar-report .pillar-report__timing-wrap {
  padding: 1rem 1.15rem;
  margin-top: 0.25rem;
}
.admin-main__content .pillar-report .pillar-report__timing-intro,
.app-main__content .pillar-report .pillar-report__timing-intro {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: #7d6e6b;
  max-width: 48rem;
}
.admin-main__content .pillar-report .pillar-report__timing-intro strong,
.app-main__content .pillar-report .pillar-report__timing-intro strong {
  color: #2d2524;
  font-weight: 600;
}
.admin-main__content .pillar-report .pillar-report__timing-grid,
.app-main__content .pillar-report .pillar-report__timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 0.75rem;
}
.admin-main__content .pillar-report .pillar-report__timing-card,
.app-main__content .pillar-report .pillar-report__timing-card {
  text-align: center;
  padding: 0.85rem 0.65rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.admin-main__content .pillar-report .pillar-report__timing-card--good,
.app-main__content .pillar-report .pillar-report__timing-card--good {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.08);
}
.admin-main__content .pillar-report .pillar-report__timing-card--warn,
.app-main__content .pillar-report .pillar-report__timing-card--warn {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(180deg, #fff 0%, rgba(254, 243, 199, 0.35) 100%);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.08);
}
.admin-main__content .pillar-report .pillar-report__timing-card--bad,
.app-main__content .pillar-report .pillar-report__timing-card--bad {
  border-color: rgba(239, 68, 68, 0.45);
  background: linear-gradient(180deg, #fff 0%, rgba(254, 226, 226, 0.35) 100%);
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.07);
}
.admin-main__content .pillar-report .pillar-report__timing-card--na,
.app-main__content .pillar-report .pillar-report__timing-card--na {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.9);
}
.admin-main__content .pillar-report .pillar-report__timing-gauge,
.app-main__content .pillar-report .pillar-report__timing-gauge {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 auto 0.45rem;
}
.admin-main__content .pillar-report .pillar-report__timing-svg,
.app-main__content .pillar-report .pillar-report__timing-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.admin-main__content .pillar-report .pillar-report__timing-ring-bg,
.app-main__content .pillar-report .pillar-report__timing-ring-bg {
  stroke: rgba(148, 163, 184, 0.35);
}
.admin-main__content .pillar-report .pillar-report__timing-ring-arc,
.app-main__content .pillar-report .pillar-report__timing-ring-arc {
  fill: none;
  transition: stroke-dashoffset 0.45s ease;
}
.admin-main__content .pillar-report .pillar-report__timing-ring-arc--good,
.app-main__content .pillar-report .pillar-report__timing-ring-arc--good {
  stroke: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__timing-ring-arc--warn,
.app-main__content .pillar-report .pillar-report__timing-ring-arc--warn {
  stroke: #f59e0b;
}
.admin-main__content .pillar-report .pillar-report__timing-ring-arc--bad,
.app-main__content .pillar-report .pillar-report__timing-ring-arc--bad {
  stroke: #ef4444;
}
.admin-main__content .pillar-report .pillar-report__timing-ring-arc--na,
.app-main__content .pillar-report .pillar-report__timing-ring-arc--na {
  stroke: rgba(148, 163, 184, 0.45);
}
.admin-main__content .pillar-report .pillar-report__timing-score,
.app-main__content .pillar-report .pillar-report__timing-score {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: #2d2524;
  letter-spacing: -0.02em;
}
.admin-main__content .pillar-report .pillar-report__timing-score--na,
.app-main__content .pillar-report .pillar-report__timing-score--na {
  font-size: 1.35rem;
  font-weight: 700;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__timing-name,
.app-main__content .pillar-report .pillar-report__timing-name {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: #7d6e6b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  hyphens: auto;
  overflow-wrap: break-word;
}
.admin-main__content .pillar-report .pillar-report__timing-ms,
.app-main__content .pillar-report .pillar-report__timing-ms {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #2d2524;
}
.admin-main__content .pillar-report .pillar-report__check-group,
.app-main__content .pillar-report .pillar-report__check-group {
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
}
.admin-main__content .pillar-report .pillar-report__check-group-title,
.app-main__content .pillar-report .pillar-report__check-group-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(249, 149, 132, 0.35);
}
.admin-main__content .pillar-report .pillar-report__check-items,
.app-main__content .pillar-report .pillar-report__check-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admin-main__content .pillar-report .pillar-report__check-item,
.app-main__content .pillar-report .pillar-report__check-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem 0.65rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
  line-height: 1.4;
}
.admin-main__content .pillar-report .pillar-report__check-item:last-child,
.app-main__content .pillar-report .pillar-report__check-item:last-child {
  border-bottom: 0;
}
.admin-main__content .pillar-report .pillar-report__check-item--neutral,
.app-main__content .pillar-report .pillar-report__check-item--neutral {
  align-items: flex-start;
}
.admin-main__content .pillar-report .pillar-report__check-body,
.app-main__content .pillar-report .pillar-report__check-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.admin-main__content .pillar-report .pillar-report__check-badge,
.app-main__content .pillar-report .pillar-report__check-badge {
  line-height: 0;
}
.admin-main__content .pillar-report .pillar-report__check-ic,
.app-main__content .pillar-report .pillar-report__check-ic {
  width: 1.1rem;
  height: 1.1rem;
}
.admin-main__content .pillar-report .pillar-report__check-ic--ok,
.app-main__content .pillar-report .pillar-report__check-ic--ok {
  color: #22c55e;
}
.admin-main__content .pillar-report .pillar-report__check-ic--bad,
.app-main__content .pillar-report .pillar-report__check-ic--bad {
  color: #f59e0b;
}
.admin-main__content .pillar-report .pillar-report__check-ic--info,
.app-main__content .pillar-report .pillar-report__check-ic--info {
  color: #64748b;
}
.admin-main__content .pillar-report .pillar-report__check-label,
.app-main__content .pillar-report .pillar-report__check-label {
  min-width: 0;
}
.admin-main__content .pillar-report .pillar-report__check-hint,
.app-main__content .pillar-report .pillar-report__check-hint {
  font-size: 0.82rem;
  color: #7d6e6b;
}
.admin-main__content .pillar-report .pillar-report__check-tag,
.app-main__content .pillar-report .pillar-report__check-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}
.admin-main__content .pillar-report .pillar-report__check-tag--ok,
.app-main__content .pillar-report .pillar-report__check-tag--ok {
  color: #166534;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.admin-main__content .pillar-report .pillar-report__check-tag--bad,
.app-main__content .pillar-report .pillar-report__check-tag--bad {
  color: #b45309;
  background: #fef3c7;
}
.admin-main__content .pillar-report .pillar-report__check-tag--info,
.app-main__content .pillar-report .pillar-report__check-tag--info {
  color: #64748b;
  background: rgba(100, 116, 139, 0.12);
}
.admin-main__content .pillar-report .pillar-report__html-msg-list,
.app-main__content .pillar-report .pillar-report__html-msg-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.45;
}
.admin-main__content .pillar-report .pillar-report__html-loc,
.app-main__content .pillar-report .pillar-report__html-loc {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  color: #7d6e6b;
  margin-right: 0.35rem;
}

.company-site-pillar-merged-table__cell--score {
  text-align: center;
  vertical-align: middle;
}

.company-show-section__title--sm {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.company-show-section__title--with-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.company-show-section__title--presentations {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: 2px solid rgba(249, 149, 132, 0.45);
}

.admin-presentation-name-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-presentation-name-input {
  width: min(100%, 420px);
  min-height: 2.15rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  background: #fff;
  color: #2d2524;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.admin-presentation-name-input::placeholder {
  color: #7d6e6b;
}
.admin-presentation-name-input:hover {
  border-color: rgba(249, 149, 132, 0.55);
  background: rgba(255, 255, 255, 0.98);
}
.admin-presentation-name-input:focus {
  outline: none;
  border-color: #F99584;
  box-shadow: 0 0 0 3px rgba(249, 149, 132, 0.2);
}

.admin-presentation-name-input--table {
  width: 280px;
}

.company-show-section__title-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  color: #fff;
  background: rgba(233, 139, 122, 0.95);
  border: 1px solid rgba(210, 115, 98, 0.9);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.company-show-section__title-link:hover {
  background: rgb(220, 120, 100);
  border-color: rgba(195, 100, 82, 0.95);
  color: #fff;
}

.company-show-section__title-link-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: inherit;
}

.admin-suivi-cards {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-suivi-card {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  overflow: hidden;
}

.admin-suivi-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(249, 149, 132, 0.06);
  border-bottom: 1px solid #f5e0dc;
}

.admin-suivi-card__period {
  font-size: 0.875rem;
  font-weight: 600;
  color: #7d6e6b;
  letter-spacing: 0.02em;
}

.admin-suivi-card__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.admin-suivi-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #F99584;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(249, 149, 132, 0.35);
}
.admin-suivi-card__action:hover {
  background: #f87c67;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 149, 132, 0.4);
}

.admin-suivi-card__action--disabled {
  color: #7d6e6b;
  background: rgba(125, 110, 107, 0.08);
  box-shadow: none;
  cursor: default;
}
.admin-suivi-card__action--disabled:hover {
  color: #7d6e6b;
  background: rgba(125, 110, 107, 0.08);
  transform: none;
  box-shadow: none;
}

.admin-suivi-card__action-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}
.admin-suivi-card__action-icon--sm {
  width: 0.95em;
  height: 0.95em;
  opacity: 0.9;
}

.admin-suivi-card__edit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #7d6e6b;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.admin-suivi-card__edit:hover {
  background: #fef0ed;
  color: #F99584;
}

.admin-suivi-card__edit-icon {
  width: 1em;
  height: 1em;
}

.admin-suivi-card__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #fff;
  transition: background 0.15s ease;
}
.admin-suivi-card__summary::-webkit-details-marker, .admin-suivi-card__summary::marker {
  display: none;
}
.admin-suivi-card__summary:hover {
  background: rgba(249, 149, 132, 0.05);
}

.admin-suivi-card__summary-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-width: 0;
}

.admin-suivi-card__notes-label--summary {
  margin-bottom: 0;
}

.admin-suivi-card__summary-hint {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #7d6e6b;
}

.admin-suivi-card__summary-chevron {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: #7d6e6b;
  transition: transform 0.2s ease;
}

.admin-suivi-card__details[open] .admin-suivi-card__summary-chevron {
  transform: rotate(180deg);
}

.admin-suivi-card__details[open] .admin-suivi-card__summary-hint {
  display: none;
}

.admin-suivi-card__notes-body {
  padding: 0 1.25rem 1.15rem;
}

.company-social-metric {
  font-weight: 500;
}
.company-social-metric.company-social-metric--good {
  color: #2f8f5b;
  font-weight: 600;
}

.company-social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.company-social-repost-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 149, 132, 0.4);
  background: rgba(249, 149, 132, 0.15);
  color: #b45848;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.company-social-note-cell {
  vertical-align: middle;
}

.company-social-note-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.company-social-note-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.company-social-note-bg {
  stroke: #eae0d3;
}

.company-social-note-progress {
  stroke: #f59e0b;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease, stroke 0.25s ease;
}

/* Seuils alignés sur la note globale présence digitale (≥68 solide, ≥42 moyen, sinon faible). */
.company-social-note-ring--good .company-social-note-progress {
  stroke: #22c55e;
}

.company-social-note-ring--good .company-social-note-value {
  color: #166534;
}

.company-social-note-ring--warn .company-social-note-progress {
  stroke: #f59e0b;
}

.company-social-note-ring--warn .company-social-note-value {
  color: #b45309;
}

.company-social-note-ring--bad .company-social-note-progress {
  stroke: #ef4444;
}

.company-social-note-ring--bad .company-social-note-value {
  color: #991b1b;
}

.company-social-note-value {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d2524;
  line-height: 1;
  transition: color 0.25s ease;
}

.company-social-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

@media (max-width: 980px) {
  .company-social-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .company-social-stats {
    grid-template-columns: minmax(0, 1fr);
  }
}
.company-social-stats__card {
  padding: 1rem 1.25rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.company-social-stats__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7d6e6b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.company-social-stats__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F99584;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.company-social-stats__excerpt {
  font-size: 0.875rem;
  color: #2d2524;
  line-height: 1.4;
  margin: 0 0 0.75rem;
  max-height: 2.8em;
  overflow: hidden;
}

.company-social-insights {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
}
@media (max-width: 860px) {
  .company-social-insights {
    grid-template-columns: minmax(0, 1fr);
  }
}

.company-social-insights__card {
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.ai-generated {
  border-color: rgba(124, 58, 237, 0.28);
}

.ai-generated .company-social-keywords__item {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.22);
  color: #5b21b6;
}

.ai-generated .company-social-tone-placeholder {
  border-color: rgba(124, 58, 237, 0.28);
}

.ai-generated .company-social-tone-block {
  border-color: rgba(124, 58, 237, 0.22);
}

.ai-generated .company-social-tone-block__title,
.ai-generated .company-social-tone-list__title,
.ai-generated .company-social-keywords__title {
  color: #5b21b6;
}

.ai-generated__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  color: #2d2524;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #5b21b6;
  backdrop-filter: blur(6px);
}

.company-social-insights__header {
  margin-bottom: 0.75rem;
}

.company-social-insights__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
  letter-spacing: -0.01em;
}

.company-social-insights__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  color: #7d6e6b;
  line-height: 1.4;
}

.company-social-insights__body {
  flex: 1 1 auto;
}

.company-social-radar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.company-social-radar canvas {
  width: 100% !important;
  max-width: 520px;
  margin-inline: auto;
  display: block;
  height: 310px !important;
}

.company-social-themes-avg-wrap {
  margin: 0 0 1.25rem;
}

.company-social-themes-avg__canvas-wrap {
  position: relative;
  width: 100%;
  min-height: 200px;
}

.company-social-themes-avg__canvas-wrap canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.company-social-posts-table__themes {
  min-width: 200px;
  max-width: 300px;
  vertical-align: top;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

.company-social-post-themes__list--table {
  gap: 0.4rem !important;
}

.company-social-theme-gauge--compact .company-social-theme-gauge__top {
  margin-bottom: 0.12rem;
}

.company-social-theme-gauge--compact .company-social-theme-gauge__label {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.company-social-theme-gauge--compact .company-social-theme-gauge__pct {
  font-size: 0.72rem;
}

.company-social-theme-gauge--compact .company-social-theme-gauge__track {
  height: 6px;
}

.company-social-theme-gauge--empty {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: #7d6e6b;
}

.company-social-posts-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0.65rem;
}

.company-social-posts-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  user-select: none;
}

.company-social-posts-view-toggle__label {
  font-size: 0.875rem;
  color: #7d6e6b;
  line-height: 1.2;
  transition: color 0.15s ease, font-weight 0.15s ease;
}

.company-social-posts-toolbar--advanced .company-social-posts-view-toggle__label--advanced {
  color: #2d2524;
  font-weight: 600;
}

.company-social-posts-toolbar--advanced .company-social-posts-view-toggle__label--simple {
  color: #7d6e6b;
  font-weight: 400;
}

.company-social-posts-toolbar:not(.company-social-posts-toolbar--advanced) .company-social-posts-view-toggle__label--simple {
  color: #2d2524;
  font-weight: 600;
}

.company-social-posts-toolbar:not(.company-social-posts-toolbar--advanced) .company-social-posts-view-toggle__label--advanced {
  color: #7d6e6b;
  font-weight: 400;
}

.company-social-posts-view-switch {
  position: relative;
  width: 46px;
  height: 28px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d9d4d1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.company-social-posts-view-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease;
}

.company-social-posts-view-switch:hover {
  background: #cec9c5;
}

.company-social-posts-view-switch[aria-checked=true] {
  background: #cfc6f7;
}

.company-social-posts-view-switch[aria-checked=true]:hover {
  background: #c2b7f0;
}

.company-social-posts-view-switch[aria-checked=true]::after {
  transform: translateX(18px);
}

.company-social-posts-table:not(.company-social-posts-table--advanced) .company-social-posts-col--metrics {
  display: none;
}

.company-social-insights--competitor-website {
  margin-top: 0;
}

.competitor-website-resume-structure-wrap {
  margin-bottom: 0.75rem;
}

.competitor-website-resume-structure {
  white-space: pre-wrap;
  color: #2d2524;
  line-height: 1.5;
}

.company-social-tone-paragraph {
  margin: 0;
  font-size: 0.875rem;
  color: #2d2524;
  line-height: 1.55;
}

.company-social-tone-placeholder {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px dashed #f5e0dc;
  background: rgba(248, 243, 240, 0.65);
}

.company-social-tone-placeholder__hint {
  margin: 0;
  font-size: 0.875rem;
  color: #7d6e6b;
  line-height: 1.5;
}

.company-social-tone-bullets {
  margin: 0.75rem 0 0.25rem;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: #2d2524;
}
.company-social-tone-bullets li {
  margin-bottom: 0.15rem;
}

.company-social-tone-columns {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem 1.25rem;
}

.company-social-tone-block {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #f5e0dc;
  background: rgba(248, 243, 240, 0.7);
  margin-top: 0.75rem;
}

.company-social-tone-block__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin-bottom: 0.35rem;
}

.company-social-keywords {
  margin-top: 0.75rem;
}

.company-social-keywords--mentioned-companies {
  margin-top: 1.05rem;
}

.company-social-keywords__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin-bottom: 0.25rem;
}

.company-social-keywords__list {
  margin: 0;
  font-size: 0.875rem;
  color: #2d2524;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.company-social-keywords__item {
  white-space: nowrap;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #fef0ed;
  color: #f5563b;
  border: 1px solid #f5e0dc;
  font-size: 0.8rem;
}

.company-social-tone-lists {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem 1.25rem;
}

.company-social-tone-list__title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin-bottom: 0.25rem;
}

.company-social-tone-list__items {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: #2d2524;
}
.company-social-tone-list__items li {
  margin-bottom: 0.1rem;
}

.admin-form-collection {
  margin-bottom: 1rem;
}

.admin-form-collection__item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}
.admin-form-collection__item .form-group {
  margin-bottom: 0;
  min-width: 12rem;
}
.admin-form-collection__item .form-group:first-child {
  flex: 0 0 14rem;
}
.admin-form-collection__item .form-group:nth-child(2) {
  flex: 1 1 18rem;
}

.admin-form-collection__remove {
  flex-shrink: 0;
}

.admin-form-card__actions-inline {
  margin: 0 0 1.5rem;
}

.company-social-post__text {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background-color: #fffbfa;
  border: 1px solid #f5e0dc;
  white-space: pre-wrap;
  line-height: 1.28 !important;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
.company-social-post__text a {
  color: #c45c4a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.company-social-post__text a:hover {
  color: #9d4333;
}

.company-social-post--linkedin {
  max-width: 640px;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem 0.95rem;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.company-social-post--linkedin .company-social-post__meta {
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}
.company-social-post--linkedin .company-social-post__meta a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
.company-social-post--linkedin .company-social-post__meta a:hover {
  color: #004182;
  text-decoration: underline;
}

.company-social-post--linkedin .company-social-post__text {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.42857 !important;
  letter-spacing: 0;
  color: #1f2328;
  white-space: pre-line;
}
.company-social-post--linkedin .company-social-post__text a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
.company-social-post--linkedin .company-social-post__text a:hover {
  color: #004182;
  text-decoration: underline;
}

.company-social-post__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.company-social-post__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #d9e3ee;
  background: #fff;
}

.company-social-post__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7785;
}

.company-social-post__avatar-icon {
  width: 20px;
  height: 20px;
}

.company-social-post__header-main {
  min-width: 0;
}

.company-social-post__author {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2328;
}

.company-social-post__header-sub {
  margin-top: 0.1rem;
  font-size: 12.5px;
  line-height: 1.35;
  color: #6b7785;
}

.company-social-post__media-slider {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.4rem;
  align-items: center;
}

.company-social-post__media-slider--single {
  grid-template-columns: minmax(0, 1fr);
}

.company-social-post__media-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.company-social-post__media-track {
  display: flex;
  transition: transform 0.25s ease;
  will-change: transform;
}

.company-social-post__media-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.company-social-post__media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e3ee;
  background: #f4f8fb;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.15rem;
}

.company-social-post__media-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(70vh, 720px);
  object-fit: contain;
}

.company-social-post__media-video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e3ee;
  background: #0f1419;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}

.company-social-post__media-video {
  display: block;
  width: 100%;
  max-height: min(70vh, 720px);
  vertical-align: middle;
}

.company-social-post__media-nav {
  width: 32px;
  height: 32px;
  border: 1px solid #d9e3ee;
  border-radius: 999px;
  background: #fff;
  color: #0a66c2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.company-social-post__media-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.company-social-post__media-slider--single .company-social-post__media-nav {
  display: none;
}

.company-social-post__media-dots {
  margin-top: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.company-social-post__media-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c9d3df;
  cursor: pointer;
  padding: 0;
}

.company-social-post__media-dot.is-active {
  background: #0a66c2;
}

.company-social-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
}

.company-social-post-layout__charts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-social-mini-chart {
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem 0.65rem 0.35rem;
}

.company-social-mini-chart__title {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7d6e6b;
}

.company-social-mini-chart__canvas-wrap {
  position: relative;
  height: 130px;
}

.company-social-post-mentioned {
  border: 1px solid rgba(124, 58, 237, 0.24);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.05);
  padding: 0.65rem 0.75rem 0.55rem;
}

.company-social-post-mentioned__title {
  margin: 0 0 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a32ca;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.company-social-post-mentioned__list {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.company-social-post-mentioned__empty {
  margin: 0;
  font-size: 0.84rem;
  color: #6a5ca8;
  opacity: 0.9;
}

.company-social-post-mentioned__item {
  white-space: nowrap;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 58, 237, 0.22);
  background: rgba(124, 58, 237, 0.12);
  color: #5a28b8;
  font-size: 0.8rem;
  font-weight: 500;
}

.company-social-post-themes {
  margin-top: 0.75rem;
  border: 1px solid rgba(124, 58, 237, 0.28);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.09);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  padding: 0.65rem 0.75rem 0.55rem;
}

.company-social-post-themes__help {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: #6a5ca8;
  line-height: 1.35;
}

.company-social-post-themes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.company-social-theme-gauge__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.company-social-theme-gauge__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4c1d95;
}

.company-social-theme-gauge__pct {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6a32ca;
  flex-shrink: 0;
}

.company-social-theme-gauge__track {
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.12);
  overflow: hidden;
}

.company-social-theme-gauge__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.85), #7c3aed);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.25);
  transition: width 0.35s ease;
}

@media (max-width: 1080px) {
  .company-social-post-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}
.admin-suivi-card__notes-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7d6e6b;
  margin-bottom: 0.5rem;
}

.admin-suivi-card__notes-content {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #2d2524;
}
.admin-suivi-card__notes-content p {
  margin: 0 0 0.5rem;
}
.admin-suivi-card__notes-content p:last-child {
  margin-bottom: 0;
}
.admin-suivi-card__notes-content ul, .admin-suivi-card__notes-content ol {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.35rem;
}
.admin-suivi-card__notes-content li {
  margin-bottom: 0.25rem;
}
.admin-suivi-card__notes-content strong, .admin-suivi-card__notes-content b {
  font-weight: 600;
}

.admin-suivi-empty {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 1.5rem;
  background: #fffbfa;
  border: 1px dashed #f5e0dc;
  border-radius: 20px;
}

.admin-suivi-empty__icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f5e0dc;
}
.admin-suivi-empty__icon svg, .admin-suivi-empty__icon .admin-suivi-empty__icon-svg {
  width: 3rem;
  height: 3rem;
}

.admin-suivi-empty__text {
  margin: 0;
  color: #7d6e6b;
  font-size: 1rem;
}

.company-sites-urls-wrap {
  margin-bottom: 1rem;
}
.company-sites-urls-wrap.admin-card {
  padding: 0;
  overflow: hidden;
}

.company-sites-urls__title {
  margin: 0;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
  background: #fef0ed;
  border-bottom: 1px solid #f5e0dc;
}

.company-sites-urls-table th,
.company-sites-urls-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}
.company-sites-urls-table a[href^=http] {
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
}
.company-sites-urls-table a[href^=http]:hover {
  text-decoration: underline;
}
.company-sites-urls-table td:last-child {
  white-space: nowrap;
}

.company-show-table {
  margin-top: 0;
}
.company-show-table .admin-table th,
.company-show-table .admin-table td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
}
.company-show-table .admin-table th.company-social-rank,
.company-show-table .admin-table td.company-social-rank {
  width: 1%;
  white-space: nowrap;
  text-align: center;
  background: #fdf5f5;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
}
.company-show-table .admin-table th.company-social-rank {
  color: #F99584;
  font-weight: 600;
}
.company-show-table .admin-table td:first-child {
  color: #2d2524;
}
.company-show-table .admin-table td a[href^=http]:not(.admin-btn) {
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
}
.company-show-table .admin-table td a[href^=http]:not(.admin-btn):hover {
  text-decoration: underline;
}
.company-show-table .admin-btn--sm {
  white-space: nowrap;
}
.company-show-table .company-show-table__audit-name--empty {
  color: #7d6e6b;
  font-style: italic;
}
.company-show-table .company-show-table__link-name {
  color: #2d2524;
  text-decoration: none;
}
.company-show-table .company-show-table__link-name:hover {
  text-decoration: underline;
  color: #F99584;
}
.company-show-table .company-show-table__row--company-site {
  background: rgba(249, 149, 132, 0.06);
}
.company-show-table .company-show-table__row--company-site .company-show-table__actions {
  white-space: nowrap;
}

.admin-table__row--client-account {
  background: rgba(252, 232, 229, 0.4);
}

.company-social-table-wrap {
  margin-top: 0.75rem;
}

.company-social-table-wrap--simplified .company-social-col-advanced {
  display: none !important;
}

.company-show-section--social .compare-table-header.company-social-table-header,
.company-social-table-wrap .compare-table-header.company-social-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.company-show-section--social .compare-table-header__right,
.company-social-table-wrap .compare-table-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.company-show-section--social .compare-mode-toggle,
.company-social-table-wrap .compare-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}

.company-show-section--social .compare-section-title,
.company-social-table-wrap .compare-section-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
}

.company-show-section__desc {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #7d6e6b;
  line-height: 1.5;
}
.company-show-section__desc code {
  font-size: 0.8125rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.compare-page {
  max-width: 1400px;
}

.admin-main__content .admin-dashboard.compare-page {
  max-width: none !important;
  width: 100%;
}

.compare-hero {
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, #fffbfa 0%, #fef0ed 100%);
  border-radius: 20px;
  border: 1px solid #f5e0dc;
}

.compare-hero__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2524;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.compare-hero__subtitle {
  margin: 0;
  font-size: 1rem;
  color: #7d6e6b;
  line-height: 1.5;
}

.compare-empty {
  padding: 2rem;
  text-align: center;
  color: #7d6e6b;
}
.compare-empty .admin-dashboard__actions {
  margin-top: 1rem;
}

.compare-section-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
  letter-spacing: -0.02em;
}

.audit-week-nav.compare-week-nav {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.audit-week-nav.compare-week-nav .audit-week-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.audit-week-nav.compare-week-nav .audit-week-nav-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1d4ed8;
  text-decoration: none;
  border: 1px solid #93c5fd;
  background: #dbeafe;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow:hover {
  color: #1e40af;
  background: #bfdbfe;
  border-color: #60a5fa;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow .icon-inline {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow.disabled {
  color: #7d6e6b;
  background: #fefaf9;
  border-color: #f5e0dc;
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.audit-week-nav.compare-week-nav .audit-week-nav-current {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2524;
  text-align: center;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .audit-week-nav.compare-week-nav .audit-week-nav-label {
    display: none;
  }
}

.compare-page .compare-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.compare-page .compare-table-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.compare-page .compare-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}

.compare-mode-toggle__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.compare-mode-toggle__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.compare-mode-toggle__track {
  width: 2.5rem;
  height: 1.35rem;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.2s ease;
}

.compare-mode-toggle__thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(1.35rem - 4px);
  height: calc(1.35rem - 4px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.compare-mode-toggle__switch input:checked + .compare-mode-toggle__track {
  background: #F99584;
}

.compare-mode-toggle__switch input:checked + .compare-mode-toggle__track .compare-mode-toggle__thumb {
  transform: translateX(1.15rem);
}

.compare-mode-toggle__label--left {
  opacity: 0.7;
}

.compare-mode-toggle__label--right {
  font-weight: 600;
}

.compare-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.compare-filter-panel {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  border: 1px solid #f5e0dc;
  background: #fefaf9;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.compare-filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.compare-filter-panel__header strong {
  font-size: 0.9rem;
  color: #2d2524;
}

.compare-filter-panel__body {
  max-height: 220px;
  overflow-y: auto;
  margin: 0.25rem -0.25rem 0.5rem;
  padding-right: 0.25rem;
}

.compare-filter-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.25rem;
  font-size: 0.875rem;
  color: #2d2524;
}

.compare-filter-option input[type=checkbox] {
  flex-shrink: 0;
}

.compare-filter-option__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.compare-filter-option__badge {
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: #fef0ed;
  color: #f76b53;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.compare-filter-panel__footer {
  display: flex;
  justify-content: flex-end;
}

.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-activity,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-da,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-tf,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-cf,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-backlinks,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-refdomains,
.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-lastscan {
  display: none;
}

.admin-main__content .admin-dashboard.compare-page.compare-page--simple .compare-charts {
  display: none;
}

.compare-cards {
  margin-bottom: 2.5rem;
}

.compare-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.compare-card {
  padding: 1.25rem 1.5rem;
  border-radius: 20px;
  border: 1px solid #f5e0dc;
  background: #fffbfa;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  position: relative;
  overflow: hidden;
}

.compare-card__icon {
  margin-bottom: 0.5rem;
}
.compare-card__icon .compare-card__icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #F99584;
}

.compare-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #7d6e6b;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.compare-term-hint {
  display: inline-flex;
  cursor: help;
}
.compare-term-hint .compare-term-hint__icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #7d6e6b;
  opacity: 0.8;
}
.compare-term-hint:hover .compare-term-hint__icon {
  color: #F99584;
}

.compare-card__term-desc {
  font-size: 0.75rem;
  color: #7d6e6b;
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.compare-card__value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.compare-card__who {
  font-size: 0.8125rem;
  color: #7d6e6b;
  margin-top: 0.25rem;
  line-height: 1.3;
  word-break: break-word;
}

.compare-table-section {
  margin-bottom: 2.5rem;
}

.compare-table__evolution-hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #7d6e6b;
  font-style: italic;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table th {
  white-space: nowrap;
  vertical-align: top;
}
.compare-table th .compare-th__term {
  display: block;
  font-weight: 600;
}
.compare-table th .compare-th__desc {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #7d6e6b;
  white-space: normal;
  line-height: 1.25;
  margin-top: 0.15rem;
  max-width: 120px;
}

.compare-th--sortable {
  cursor: pointer;
  user-select: none;
}
.compare-th--sortable:hover {
  background: rgba(0, 0, 0, 0.04);
}
.compare-th--sortable .compare-th-sort__wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.compare-th--sortable .compare-th-sort__arrow {
  font-size: 0.85rem;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.compare-th--sortable .compare-th-sort__arrow.is-active {
  opacity: 1;
  font-weight: 700;
}
.compare-th--sortable:hover .compare-th-sort__arrow {
  opacity: 0.8;
}

.compare-cell {
  font-weight: 500;
}
.compare-cell.compare-cell--good {
  color: #15803d;
  background: rgba(21, 128, 61, 0.08);
}
.compare-cell.compare-cell--medium {
  color: #b45309;
  background: rgba(180, 83, 9, 0.06);
}
.compare-cell.compare-cell--bad {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.06);
}

.compare-table .compare-table__num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.compare-table .compare-table__global-note {
  text-align: center;
  font-variant-numeric: tabular-nums;
  background: rgba(0, 0, 0, 0.03);
}

.compare-note-gauge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
}
.compare-note-gauge__circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.compare-note-gauge__bg {
  fill: none;
  stroke: rgba(0, 0, 0, 0.08);
  stroke-width: 3;
}
.compare-note-gauge__fill {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke 0.2s ease;
}
.compare-note-gauge--good .compare-note-gauge__fill {
  stroke: #22c55e;
}
.compare-note-gauge--medium .compare-note-gauge__fill {
  stroke: #f59e0b;
}
.compare-note-gauge--bad .compare-note-gauge__fill {
  stroke: #ef4444;
}
.compare-note-gauge__value {
  position: absolute;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
}

.compare-table tbody td {
  vertical-align: middle;
}
.compare-table .compare-table__muted {
  font-size: 0.875rem;
  color: #7d6e6b;
}
.compare-table .compare-table__url {
  font-size: 0.875rem;
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
}
.compare-table .compare-table__url:hover {
  text-decoration: underline;
}
.compare-table .compare-table__rank {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #7d6e6b;
  white-space: nowrap;
}
.compare-table .compare-table__name-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-table .compare-table__name-wrap {
  min-width: 0;
}
.compare-table .compare-rank-evolution {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  min-width: 1.25rem;
  text-align: center;
}
.compare-table .compare-rank-evolution__icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.compare-table .compare-rank-evolution--up {
  color: #16a34a;
}
.compare-table .compare-rank-evolution--down {
  color: #dc2626;
}
.compare-table .compare-rank-evolution--stable {
  color: #7d6e6b;
  font-weight: 500;
  font-size: 1rem;
}
.compare-table .compare-table__row--company {
  background: rgba(249, 149, 132, 0.06);
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}
.compare-badge.compare-badge--company {
  background: #fef0ed;
  color: #f6634a;
}
.compare-badge.compare-badge--competitor {
  background: rgba(125, 110, 107, 0.15);
  color: #7d6e6b;
}
.compare-badge .compare-badge__icon {
  width: 0.875rem;
  height: 0.875rem;
}

.compare-activity {
  font-size: 0.8125rem;
  color: #7d6e6b;
}
.compare-activity.compare-activity--up {
  color: #16a34a;
  font-weight: 500;
}
.compare-activity.compare-activity--down {
  color: #dc2626;
}
.compare-activity.compare-activity--stable {
  color: #7d6e6b;
}

.compare-charts {
  margin-bottom: 2.5rem;
}

.compare-charts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .compare-charts__grid {
    grid-template-columns: 1fr;
  }
}
.compare-chart-card {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.compare-chart-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
}

.compare-chart-card__desc {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #7d6e6b;
  line-height: 1.4;
  flex-shrink: 0;
}

.compare-chart-card__canvas {
  position: relative;
  flex: 1 1 auto;
  min-height: 240px;
  width: 100%;
}
.compare-chart-card__canvas canvas {
  display: block;
  width: 100% !important;
  max-height: 100%;
}

.compare-chart-card__empty {
  flex: 1 1 auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  border: 1px dashed #f5e0dc;
}

.compare-chart-card__empty-text {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: #7d6e6b;
}

.compare-chart-card__empty-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #7d6e6b;
  line-height: 1.5;
}
.compare-chart-card__empty-hint code {
  font-size: 0.75rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
}

.compare-tips {
  padding: 1.5rem 1.75rem;
}
.compare-tips .compare-tips__title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2524;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.compare-tips .compare-tips__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #F99584;
}
.compare-tips .compare-tips__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #7d6e6b;
  line-height: 1.6;
}
.compare-tips .compare-tips__list li {
  margin: 0.5rem 0;
}
.compare-tips .compare-tips__list strong {
  color: #2d2524;
}

.admin-seo-keywords-form {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-seo-keywords-form .admin-form-card__title {
  margin-top: 0;
}

.admin-seo-keywords-form__intro {
  margin-bottom: 1rem;
}

.admin-seo-keywords-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
}

.admin-seo-keywords-form__field {
  flex: 1;
  min-width: 12rem;
}

.admin-seo-keywords-form__field--select {
  flex: 0 1 14rem;
  min-width: 11rem;
}

.company-seo-overview-table-wrap {
  margin-top: 1rem;
}

.company-seo-pos {
  font-weight: 600;
}
.company-seo-pos--none {
  font-weight: 400;
  color: #7d6e6b;
}

.admin-seo-serp-header {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.admin-seo-serp-header .seo-serp-nav {
  margin-top: 0;
}

.seo-serp-nav {
  margin-top: 1rem;
}

.seo-serp-nav__bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.seo-serp-nav__cell--start {
  justify-self: start;
}

.seo-serp-nav__cell--end {
  justify-self: end;
}

.seo-serp-nav__date {
  justify-self: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2524;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.seo-serp-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #2d2524;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.seo-serp-nav__btn:hover:not(.seo-serp-nav__btn--disabled) {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.2);
  color: #2d2524;
}
.seo-serp-nav__btn:focus-visible {
  outline: 2px solid #F99584;
  outline-offset: 2px;
}

.seo-serp-nav__btn-icon {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  opacity: 0.85;
}

.seo-serp-nav__btn--disabled {
  color: rgba(125, 110, 107, 0.55);
  cursor: not-allowed;
  pointer-events: none;
  background: #f8f8f8;
  border-color: rgba(0, 0, 0, 0.06);
}
.seo-serp-nav__btn--disabled .seo-serp-nav__btn-icon {
  opacity: 0.45;
}

.admin-seo-serp-table .seo-serp-col-pos {
  width: 3rem;
  font-variant-numeric: tabular-nums;
}

.seo-serp-row--company {
  background: #fffbfa;
  box-shadow: inset 3px 0 0 #F99584;
}

.seo-serp-company-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #F99584;
}
.seo-serp-company-badge__icon {
  width: 1rem;
  height: 1rem;
}

.seo-serp-url-cell {
  line-height: 1.45;
}

.seo-serp-url-cell__sep {
  margin: 0 0.2rem;
  color: #7d6e6b;
  user-select: none;
}

.seo-serp-competitor-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #7d6e6b;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: baseline;
}
.seo-serp-competitor-detail__icon {
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  opacity: 0.85;
}
.seo-serp-competitor-detail:hover {
  color: #F99584;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.seo-serp-competitor-detail:focus-visible {
  outline: 2px solid #F99584;
  outline-offset: 2px;
  border-radius: 2px;
}

.seo-serp-url {
  word-break: break-all;
  color: #F99584;
  text-decoration: none;
  font-weight: 500;
}
.seo-serp-url:visited {
  color: #F99584;
}
.seo-serp-url:hover {
  color: #f7735d;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.seo-serp-url:focus-visible {
  outline: 2px solid #F99584;
  outline-offset: 2px;
  border-radius: 2px;
}

.company-presentation-toggle {
  display: inline-block;
  width: 2.35rem;
  height: 1.2rem;
  border-radius: 999px;
  position: relative;
  box-sizing: border-box;
  vertical-align: middle;
}
.company-presentation-toggle::after {
  content: "";
  position: absolute;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0.14rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  transition: left 0.15s ease;
}
.company-presentation-toggle--off {
  background: #e5e7eb;
}
.company-presentation-toggle--off::after {
  left: 0.14rem;
}
.company-presentation-toggle--on {
  background: #14b8a6;
}
.company-presentation-toggle--on::after {
  left: calc(100% - 0.14rem - 0.92rem);
}

.admin-table__th--narrow {
  width: 1%;
  white-space: nowrap;
}

.company-index-offer-match {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #166534;
}
.company-index-offer-match .company-index-offer-match__icon,
.company-index-offer-match svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.company-index-offer-match--lead {
  margin: 0;
  flex-shrink: 0;
}

.admin-dashboard--company-index .company-index-cards {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-dashboard--company-index .company-index-card {
  border-radius: 14px;
  border: 1px solid #f5e0dc;
  background: #fffbfa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}
.admin-dashboard--company-index .company-index-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.72);
}
.admin-dashboard--company-index .company-index-card__title {
  min-width: 0;
  flex: 1 1 auto;
}
.admin-dashboard--company-index .company-index-card__cta {
  flex-shrink: 0;
}
.admin-dashboard--company-index .company-index-card__header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.admin-dashboard--company-index .company-index-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.admin-dashboard--company-index .company-index-card__toggle-label {
  font-weight: 600;
}
.admin-dashboard--company-index .company-index-card__toggle-icon {
  display: inline-flex;
  transition: transform 160ms ease;
}
.admin-dashboard--company-index .company-index-card:not(.is-collapsed) .company-index-card__toggle-icon {
  transform: rotate(180deg);
}
.admin-dashboard--company-index .company-index-card__body {
  display: grid;
  grid-template-columns: minmax(0, 11rem) minmax(0, 1fr) minmax(12rem, 17rem);
  gap: 0 1.25rem;
  padding: 1rem 1.15rem 1.15rem;
  align-items: start;
}
.admin-dashboard--company-index .company-index-card__body[hidden] {
  display: none !important;
}
.admin-dashboard--company-index .company-index-card__section-title {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F99584;
}
.admin-dashboard--company-index .company-index-card__section--site {
  padding-right: 0.5rem;
}
.admin-dashboard--company-index .company-index-card__section--offer .company-index-offer--card {
  margin-top: 0;
}
.admin-dashboard--company-index .company-index-empty {
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.admin-dashboard--company-index .company-index-empty__text {
  margin: 0 0 1rem;
  color: #7d6e6b;
}

.company-index-site--card {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.company-index-metrics__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company-index-metrics__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 9.5rem) 1fr;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #2d2524;
  font-variant-numeric: tabular-nums;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.company-index-metrics__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.company-index-metrics__row:first-child {
  padding-top: 0;
}

.company-index-metrics__nums {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.5rem;
  text-align: right;
  min-width: 0;
}

.company-index-enterprise {
  display: block;
}

.company-index-enterprise__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  min-width: 0;
  max-width: 100%;
}

.company-index-enterprise__name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  color: #2d2524;
  border-bottom: none;
}
.company-index-enterprise__name:hover {
  border-bottom: none;
}
.company-index-enterprise__name strong {
  font-weight: 700;
}

.company-index-enterprise__row--card {
  flex-wrap: wrap;
}

.company-index-enterprise__name.company-index-enterprise__name--card {
  flex: 0 1 auto;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.company-index-enterprise__alert {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 0.62rem;
  line-height: 1.2;
  padding: 0.1rem 0.4rem;
}

.company-index-prospect {
  display: inline-block;
  flex-shrink: 0;
  margin-left: 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.18);
  border: 1px solid rgba(20, 184, 166, 0.45);
  vertical-align: middle;
}

.company-index-archived {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  background: rgba(107, 114, 128, 0.15);
  border: 1px solid rgba(107, 114, 128, 0.35);
  vertical-align: middle;
}

.company-index-label {
  display: inline-block;
  flex-shrink: 0;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7c4a3a;
  background: rgba(249, 149, 132, 0.15);
  border: 1px solid rgba(249, 149, 132, 0.35);
  vertical-align: middle;
}

.company-index-segments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.company-index-segments__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #f5e0dc;
  background: #fffbfa;
  color: #7d6e6b;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.company-index-segments__tab:hover {
  color: #2d2524;
  border-color: rgba(249, 149, 132, 0.45);
  text-decoration: none;
}
.company-index-segments__tab.is-active {
  color: #2d2524;
  background: #fef0ed;
  border-color: #F99584;
}

.company-index-segments__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(125, 110, 107, 0.12);
  color: #7d6e6b;
}
.company-index-segments__tab.is-active .company-index-segments__count {
  background: rgba(249, 149, 132, 0.25);
  color: #2d2524;
}

.company-archived-banner {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-color: rgba(107, 114, 128, 0.35);
  background: rgba(107, 114, 128, 0.08);
  color: #7d6e6b;
  font-size: 0.9rem;
  line-height: 1.45;
}

.company-index-site {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.company-index-site__pill {
  font-size: 0.7rem;
  padding: 0.15rem 0.45rem;
  white-space: nowrap;
}

.company-index-metrics__row .company-index-metrics__label {
  font-weight: 600;
  color: #7d6e6b;
  margin-right: 0;
}

.company-index-metrics__label {
  font-weight: 500;
  color: #7d6e6b;
}

.company-index-metrics__val {
  font-weight: 700;
  color: #F99584;
}
.company-index-metrics__val--over {
  color: #991b1b;
}

.company-index-metrics__cap {
  font-weight: 500;
  color: #7d6e6b;
  font-size: 0.78em;
}

.company-index-metrics__val--disabled {
  font-weight: 600;
  color: #7d6e6b;
  font-size: 0.85em;
}

.company-index-metrics__pill {
  font-size: 0.62rem;
  padding: 0.1rem 0.4rem;
  line-height: 1.2;
  white-space: nowrap;
}

.company-index-metrics__warn {
  margin: 0.45rem 0 0;
}

.company-index-metrics__warn .admin-pill {
  font-size: 0.7rem;
}

.company-index-offer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.5rem;
  font-size: 0.8125rem;
  align-items: baseline;
  white-space: nowrap;
}

.company-index-offer__label {
  color: #7d6e6b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.company-index-offer__value {
  font-variant-numeric: tabular-nums;
  color: #2d2524;
  font-weight: 600;
  white-space: nowrap;
}

.company-index-offer--card {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .admin-dashboard--company-index .company-index-card__body {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .admin-dashboard--company-index .company-index-card__section--site {
    padding-right: 0;
  }
}
@media (max-width: 560px) {
  .admin-dashboard--company-index .company-index-card__header {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-dashboard--company-index .company-index-card__cta {
    justify-content: center;
    width: 100%;
  }
  .admin-dashboard--company-index .company-index-card__header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .admin-dashboard--company-index .company-index-card__toggle {
    justify-content: center;
    width: 100%;
  }
  .company-index-metrics__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .company-index-metrics__row .company-index-metrics__nums {
    justify-content: flex-start;
    text-align: left;
  }
  .company-index-offer--card,
  .company-index-offer--card .company-index-offer__label,
  .company-index-offer--card .company-index-offer__value {
    white-space: normal;
  }
}
.company-tabs__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2d2524;
  background: rgba(249, 149, 132, 0.25);
  border-radius: 999px;
  vertical-align: middle;
}

.leads-dashboard__filters {
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.leads-dashboard__filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 0.75rem 1rem;
  align-items: end;
}

.leads-dashboard__filter--submit .admin-btn {
  margin-top: 0;
  width: 100%;
}

.leads-dashboard__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.leads-dashboard__kpi {
  padding: 1rem 1.25rem;
  text-align: center;
}

.leads-dashboard__kpi-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7d6e6b;
  margin-bottom: 0.35rem;
}

.leads-dashboard__kpi-value {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #2d2524;
}

.leads-dashboard__kpi-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: #7d6e6b;
}

.leads-dashboard__chart-card .competitor-chart-card__canvas {
  min-height: 260px;
}

.competitor-info-table-wrap {
  margin-bottom: 1.5rem;
}
.competitor-info-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
}

.competitor-json-files {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.competitor-json-file.admin-card {
  overflow: hidden;
  padding: 0;
}

.competitor-json-file__header {
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #f5e0dc;
  font-weight: 600;
  font-size: 0.9375rem;
}

.competitor-json-file__icon {
  margin-right: 0.5rem;
  opacity: 0.7;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
}

.competitor-json-file__body {
  padding: 1rem 1.25rem;
}

.competitor-json-file__pre {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  color: #2d2524;
  max-height: 24rem;
  overflow-y: auto;
}
.competitor-json-file__pre--muted {
  color: #7d6e6b;
}

.competitor-chart-wrap {
  padding: 1.25rem;
  height: 280px;
}

.competitor-chart-card.admin-card {
  padding: 1.25rem;
}

.competitor-chart-card__canvas {
  height: 260px;
  position: relative;
}

.competitor-new-urls.admin-card {
  padding: 0;
  overflow: hidden;
}

.competitor-new-urls__header {
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid #f5e0dc;
  font-weight: 600;
  font-size: 0.9375rem;
}

.competitor-new-urls__list {
  margin: 0;
  padding: 1rem 1.25rem;
  list-style: none;
  max-height: 28rem;
  overflow-y: auto;
}

.competitor-new-urls__list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
}
.competitor-new-urls__list li:last-child {
  border-bottom: none;
}

.competitor-new-urls__link {
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
}
.competitor-new-urls__link:hover {
  text-decoration: underline;
}

.competitor-crawls-table-wrap {
  padding: 0;
  overflow-x: auto;
}

.competitor-crawls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.competitor-crawls-table th,
.competitor-crawls-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f5e0dc;
  vertical-align: top;
}
.competitor-crawls-table th {
  font-weight: 600;
  color: #2d2524;
  background: rgba(0, 0, 0, 0.03);
}
.competitor-crawls-table td:last-child {
  white-space: nowrap;
}

.competitor-crawls-urls {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  font-size: 0.875rem;
}
.competitor-crawls-urls li {
  margin: 0.25rem 0;
  word-break: break-all;
}
.competitor-crawls-urls a {
  color: #F99584;
  text-decoration: none;
}
.competitor-crawls-urls a:hover {
  text-decoration: underline;
}

.competitor-crawls-urls-muted {
  font-size: 0.875rem;
  color: #7d6e6b;
}

.admin-dashboard__actions {
  margin-bottom: 1rem;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  color: #fff;
  background: #F99584;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}
.admin-btn:hover {
  background: #f87c67;
  color: #fff;
}

.admin-btn__icon {
  flex-shrink: 0;
  height: 1.1em;
  width: 1.1em;
}

.admin-btn--sm {
  padding: 0.35rem 0.65rem;
  font-size: 0.8125rem;
}
.admin-btn--sm .admin-btn__icon {
  height: 1em;
  width: 1em;
}

.admin-btn--ghost {
  color: #7d6e6b;
  background: transparent;
}
.admin-btn--ghost:hover {
  background: #fef0ed;
  color: #F99584;
}

.admin-btn--muted {
  color: #7d6e6b;
  background: transparent;
}
.admin-btn--muted:hover {
  background: #fef0ed;
  color: #F99584;
}

.admin-card {
  background: #fffbfa;
  border-radius: 20px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.admin-table-wrap {
  background: #fffbfa;
  border-radius: 20px;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  overflow: hidden;
  margin-top: 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.admin-table th, .admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #f5e0dc;
}
.admin-table th {
  background: #fef0ed;
  font-weight: 600;
  color: #F99584;
}
.admin-table tbody tr:last-child td {
  border-bottom: none;
}
.admin-table tbody tr:hover {
  background: rgba(252, 232, 229, 0.4);
}
.admin-table td {
  color: #7d6e6b;
}
.admin-table td:first-child {
  color: #7d6e6b;
  font-variant-numeric: tabular-nums;
}

.admin-pagination {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.admin-pagination__info {
  margin: 0;
  font-size: 0.875rem;
  color: #7d6e6b;
}

.admin-pagination__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-pagination__page {
  display: inline-block;
  min-width: 2rem;
  padding: 0.35rem 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  text-decoration: none;
  color: #2d2524;
  border: 1px solid #f5e0dc;
  border-radius: 4px;
  background: #fffbfa;
}
.admin-pagination__page:hover {
  background: #fef0ed;
  border-color: #fce0da;
}
.admin-pagination__page--current {
  font-weight: 600;
  background: #fef0ed;
  border-color: #F99584;
  color: #F99584;
  cursor: default;
}

.admin-pagination .admin-btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.admin-uuid {
  font-size: 0.8125rem;
  font-family: ui-monospace, monospace;
  background: #fef0ed;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  word-break: break-all;
  color: #F99584;
}

.audit-week-nav.compare-week-nav {
  margin-bottom: 1.5rem;
  padding: 0.875rem 1rem;
  background: #fffbfa;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.audit-week-nav.compare-week-nav .audit-week-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.audit-week-nav.compare-week-nav .audit-week-nav-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1d4ed8;
  text-decoration: none;
  border: 1px solid #93c5fd;
  background: #dbeafe;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow:hover {
  color: #1e40af;
  background: #bfdbfe;
  border-color: #60a5fa;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow .icon-inline {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.audit-week-nav.compare-week-nav .audit-week-nav-arrow.disabled {
  color: #7d6e6b;
  background: #fefaf9;
  border-color: #f5e0dc;
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.audit-week-nav.compare-week-nav .audit-week-nav-current {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2d2524;
  text-align: center;
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .audit-week-nav.compare-week-nav .audit-week-nav-label {
    display: none;
  }
}

.app-main__content .app-dashboard .compare-cards__grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 768px) {
  .app-main__content .app-dashboard .compare-cards__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  .app-main__content .app-dashboard .compare-cards__grid {
    grid-template-columns: 1fr !important;
  }
}
.app-dashboard-global-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin: 0 0 1.25rem;
  padding: 1rem 1.25rem;
  background: #fefaf9;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-dashboard-global-score__donut-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-dashboard .app-dashboard-global-score-donut.pillar-onpage-gauge--lg {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0;
}
.app-dashboard .app-dashboard-global-score-donut.pillar-onpage-gauge--lg .pillar-onpage-gauge__value {
  font-size: 1.25rem;
}

.app-dashboard-global-score__body {
  flex: 1 1 220px;
  min-width: 0;
}

.app-dashboard-global-score__body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2d2524;
  margin-bottom: 0;
}

.app-dashboard-global-score__focus {
  margin: 0.5rem 0 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.45 !important;
  color: #7d6e6b !important;
  font-weight: 500;
  max-width: 42rem;
}

.app-dashboard-global-score--empty .app-dashboard-global-score__donut-wrap .pillar-onpage-gauge--lg {
  width: 6.25rem;
  height: 6.25rem;
}

.app-dashboard-seo-leads-row {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 1rem;
}

.app-dashboard-seo-leads-row__seo {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.app-dashboard-seo-leads-row .app-dashboard-seo-strip {
  flex: 1 1 auto;
  width: 100%;
  margin-top: 0;
  align-items: start;
  align-content: start;
}

.app-dashboard-seo-leads-row .app-dashboard-dark-card--leads {
  flex: 0 0 clamp(260px, 30%, 340px);
  width: clamp(260px, 30%, 340px);
  max-width: 340px;
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.app-dashboard-seo-leads-row .app-dashboard-dark-card--leads .app-dashboard-dark-card__cta {
  margin-top: auto;
}

.app-dashboard-seo-leads-row .app-dashboard-seo-strip__cta {
  align-self: center;
}

@media (max-width: 1040px) {
  .app-dashboard-seo-leads-row {
    flex-direction: column;
  }
  .app-dashboard-seo-leads-row .app-dashboard-dark-card--leads {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
}
.app-dashboard-seo-strip {
  margin-top: 0;
  border-radius: 16px;
  border: 1px solid #f5e0dc;
  background: #fefaf9;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  padding: 0.95rem 1.05rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
  gap: 0.75rem;
  align-items: center;
  color: #2d2524;
  text-decoration: none;
}

.app-dashboard-seo-strip__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.app-dashboard-seo-strip__label {
  font-size: 0.8rem;
  color: #7d6e6b;
}

.app-dashboard-seo-strip__value {
  font-size: 2rem;
  line-height: 1;
  color: #2d2524;
}

.app-dashboard-seo-strip__hint {
  font-size: 0.82rem;
  color: #7d6e6b;
}

.app-dashboard-seo-strip__cta,
.app-dashboard-dark-card__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.5rem 0.85rem;
  background: #F99584;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.app-dashboard-seo-strip:hover {
  text-decoration: none;
}

.app-dashboard-seo-strip:hover .app-dashboard-seo-strip__cta,
.app-dashboard-dark-card__cta:hover {
  background: #f87c67;
  color: #fff;
  text-decoration: none;
}

.app-dashboard-seo-strip__cta-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

@media (max-width: 1040px) {
  .app-dashboard-seo-strip {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }
  .app-dashboard-seo-strip__cta {
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .app-dashboard-seo-strip {
    grid-template-columns: 1fr;
  }
}
.app-dashboard-dark-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.app-dashboard-dark-card {
  border-radius: 18px;
  border: 1px solid #f5e0dc;
  background: #fefaf9;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
  padding: 1rem 1rem 0.9rem;
  color: #2d2524;
}

.app-dashboard-dark-card__title {
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #7d6e6b;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.app-dashboard-dark-card__title-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.app-dashboard-dark-card__kpi {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.app-dashboard-dark-card__kpi span {
  font-size: 0.92rem;
  color: #2d2524;
}
.app-dashboard-dark-card__kpi strong {
  font-size: 2rem;
  line-height: 1;
  color: #2d2524;
}

.app-dashboard-dark-card__kpi--leads {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.app-dashboard-dark-card__kpi-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.app-dashboard-dark-card__kpi-value--up {
  color: #86efac;
}

.app-dashboard-dark-card--leads-up {
  border-color: rgba(34, 197, 94, 0.35);
}

.app-dashboard-dark-card__leads-compare {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}
.app-dashboard-dark-card__leads-compare strong {
  font-size: inherit;
  color: #2d2524;
}

.app-dashboard-leads-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.app-dashboard-leads-trend__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.app-dashboard-leads-trend--up {
  color: #4ade80;
}

.app-dashboard-leads-trend--down {
  color: #f87171;
}

.app-dashboard-leads-trend--flat {
  color: rgba(255, 255, 255, 0.55);
}

.app-dashboard-dark-card__badge {
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.app-dashboard-dark-card__badge--excellent {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}
.app-dashboard-dark-card__badge--good {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}
.app-dashboard-dark-card__badge--warn {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
}

.app-dashboard-dark-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #f5e0dc;
}

.app-dashboard-dark-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid #f5e0dc;
}

.app-dashboard-dark-card__list li span {
  min-width: 0;
  font-size: 0.96rem;
  color: #2d2524;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-dashboard-dark-card__list li strong {
  flex-shrink: 0;
  min-width: 2.3rem;
  text-align: center;
  border-radius: 999px;
  padding: 0.22rem 0.45rem;
  background: #ecfdf5;
  color: #166534;
  font-weight: 700;
}

.app-dashboard-dark-card__list--competition li strong {
  background: rgba(37, 99, 235, 0.14);
  color: #1e40af;
}

.app-dashboard-dark-card__list--competition li span small {
  display: block;
  color: #7d6e6b;
}

.app-dashboard-dark-card__list--competition li.is-company {
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}

.app-dashboard-dark-card__empty {
  color: #7d6e6b;
  font-size: 0.92rem;
}

.app-dashboard-dark-card__text {
  margin: 0.15rem 0 0.75rem;
  color: #7d6e6b;
  font-size: 0.92rem;
  line-height: 1.45;
}

.app-dashboard-dark-card__meta {
  margin: 0 0 0.55rem;
  color: #7d6e6b;
  font-size: 0.83rem;
  font-weight: 600;
}

.app-dashboard-dark-card__notes {
  margin-top: 0.2rem;
  border-top: 1px solid #f5e0dc;
  padding-top: 0.65rem;
  font-size: 0.92rem;
  color: #2d2524;
  line-height: 1.5;
  max-height: 12.5rem;
  overflow: auto;
}
.app-dashboard-dark-card__notes p {
  margin: 0 0 0.45rem;
}
.app-dashboard-dark-card__notes p:last-child {
  margin-bottom: 0;
}

.app-dashboard-dark-card .llm-audit-dashboard-aggregate {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-bottom: 0.7rem !important;
}

.app-dashboard-dark-card .llm-audit-dashboard-aggregate strong {
  color: #2d2524 !important;
}

.app-dashboard-dark-card__quick-task {
  margin-top: 0.25rem;
}

.app-dashboard-dark-card__quick-task-label {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  color: #2d2524;
  font-weight: 600;
}

.app-dashboard-dark-card__quick-task-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7d6e6b;
  font-size: 0.9rem;
}

.app-dashboard-dark-card__quick-task-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.app-dashboard-dark-card__quick-task-track {
  width: 2.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #d1d5db;
  position: relative;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}

.app-dashboard-dark-card__quick-task-thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(1.25rem - 4px);
  height: calc(1.25rem - 4px);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.app-dashboard-dark-card__quick-task-switch input:checked + .app-dashboard-dark-card__quick-task-track {
  background: #F99584;
}

.app-dashboard-dark-card__quick-task-switch input:checked + .app-dashboard-dark-card__quick-task-track .app-dashboard-dark-card__quick-task-thumb {
  transform: translateX(1rem);
}

.app-dashboard-dark-card__cta {
  margin-top: 0.8rem;
  justify-content: center;
}

@media (max-width: 920px) {
  .app-dashboard-dark-grid {
    grid-template-columns: 1fr;
  }
}
.app-main__content .admin-dashboard.compare-page {
  max-width: none !important;
  width: 100%;
}

.app-main__content .admin-dashboard.compare-page .compare-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.app-main__content .admin-dashboard.compare-page .compare-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #7d6e6b;
}

.compare-mode-toggle__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.compare-mode-toggle__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.compare-mode-toggle__track {
  width: 2.5rem;
  height: 1.35rem;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  transition: background-color 0.2s ease;
}

.compare-mode-toggle__thumb {
  position: absolute;
  left: 2px;
  top: 2px;
  width: calc(1.35rem - 4px);
  height: calc(1.35rem - 4px);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.compare-mode-toggle__switch input:checked + .compare-mode-toggle__track {
  background: #F99584;
}

.compare-mode-toggle__switch input:checked + .compare-mode-toggle__track .compare-mode-toggle__thumb {
  transform: translateX(1.15rem);
}

.compare-mode-toggle__label--left {
  opacity: 0.7;
}

.compare-mode-toggle__label--right {
  font-weight: 600;
}

.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-activity,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-da,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-tf,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-cf,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-backlinks,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-refdomains,
.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-col-lastscan {
  display: none;
}

.app-main__content .admin-dashboard.compare-page.compare-page--simple .compare-charts {
  display: none;
}

.app-main__content .company-show-section {
  margin-top: 2.25rem;
}
.app-main__content .company-show-section:first-of-type {
  margin-top: 1.75rem;
}

.app-main__content .company-show-section__intro {
  margin-bottom: 1rem;
}

.app-main__content .company-show-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d2524;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  padding-left: 1rem;
  border-left: 4px solid #F99584;
  line-height: 1.35;
}

.app-main__content .company-show-section__desc {
  margin: 0;
  font-size: 0.9375rem;
  color: #7d6e6b;
  line-height: 1.5;
  padding-left: 1rem;
}

.app-main__content .competitor-chart-card.admin-card {
  padding: 1.5rem;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-main__content .competitor-chart-card__canvas {
  height: 260px;
  position: relative;
}

.app-main__content .competitor-crawls-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-main__content .competitor-crawls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.app-main__content .competitor-crawls-table thead {
  background: linear-gradient(180deg, #fef0ed 0%, rgba(249, 149, 132, 0.06) 100%);
}
.app-main__content .competitor-crawls-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #F99584;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #f5e0dc;
}
.app-main__content .competitor-crawls-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f5e0dc;
  color: #2d2524;
  vertical-align: top;
}
.app-main__content .competitor-crawls-table tbody tr:last-child td {
  border-bottom: none;
}
.app-main__content .competitor-crawls-table tbody tr:hover {
  background: rgba(249, 149, 132, 0.04);
}
.app-main__content .competitor-crawls-table td:first-child {
  font-variant-numeric: tabular-nums;
  color: #7d6e6b;
}
.app-main__content .competitor-crawls-table td:nth-child(2) {
  font-weight: 600;
  color: #2d2524;
}

.app-main__content .competitor-crawls-urls {
  margin: 0;
  padding-left: 1.25rem;
  list-style: none;
  font-size: 0.875rem;
}
.app-main__content .competitor-crawls-urls li {
  margin: 0.5rem 0;
  padding-left: 0.75rem;
  position: relative;
  word-break: break-all;
}
.app-main__content .competitor-crawls-urls li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F99584;
}
.app-main__content .competitor-crawls-urls a {
  color: #F99584;
  text-decoration: none;
  transition: color 0.15s;
}
.app-main__content .competitor-crawls-urls a:hover {
  color: #f6634a;
  text-decoration: underline;
}

.app-main__content .competitor-crawls-urls-muted {
  font-size: 0.875rem;
  color: #7d6e6b;
  font-style: italic;
}

.app-main__content .competitor-new-urls.admin-card {
  padding: 0;
  overflow: hidden;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-main__content .competitor-new-urls__header {
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, #fef0ed 0%, rgba(249, 149, 132, 0.04) 100%);
  border-bottom: 1px solid #f5e0dc;
  font-weight: 600;
  font-size: 1rem;
  color: #2d2524;
}

.app-main__content .competitor-new-urls__list {
  margin: 0;
  padding: 1.25rem 1.5rem;
  list-style: none;
  max-height: 28rem;
  overflow-y: auto;
}

.app-main__content .competitor-new-urls__list li {
  padding: 0.6rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9375rem;
}
.app-main__content .competitor-new-urls__list li:last-child {
  border-bottom: none;
}
.app-main__content .competitor-new-urls__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F99584;
}

.app-main__content .competitor-new-urls__link {
  color: #F99584;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.15s;
}
.app-main__content .competitor-new-urls__link:hover {
  color: #f6634a;
  text-decoration: underline;
}

.app-main__content .admin-dashboard__intro {
  color: #7d6e6b;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.app-main__content .company-site-tabs {
  margin-top: 1.25rem;
}

.app-main__content .company-site-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #f5e0dc;
}

.app-main__content .company-site-tabs__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.app-main__content .company-site-tabs__tab {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #7d6e6b;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.app-main__content .company-site-tabs__tab:hover {
  color: #2d2524;
}

.app-main__content .company-site-tabs__panels {
  padding-top: 1.25rem;
}

.app-main__content .company-site-tabs__panel {
  display: none;
}

.app-main__content .company-site-tabs:has(#company-site-tab-client-pillars:checked) .company-site-tabs__nav label[for=company-site-tab-client-pillars],
.app-main__content .company-site-tabs:has(#company-site-tab-client-crawls:checked) .company-site-tabs__nav label[for=company-site-tab-client-crawls],
.app-main__content .company-site-tabs:has(#company-site-tab-client-new:checked) .company-site-tabs__nav label[for=company-site-tab-client-new] {
  color: #F99584;
  border-bottom-color: #F99584;
}

.app-main__content .company-site-tabs:has(#company-site-tab-client-pillars:checked) .company-site-tabs__panel--pillars,
.app-main__content .company-site-tabs:has(#company-site-tab-client-crawls:checked) .company-site-tabs__panel--crawls,
.app-main__content .company-site-tabs:has(#company-site-tab-client-new:checked) .company-site-tabs__panel--new {
  display: block;
}

.app-main__content .company-site-tabs__url {
  color: #2d2524;
  text-decoration: none;
  border-bottom: 1px dashed rgba(125, 110, 107, 0.35);
  word-break: break-all;
}
.app-main__content .company-site-tabs__url:hover {
  color: #F99584;
  border-bottom-color: rgba(249, 149, 132, 0.45);
}

.app-main__content .company-site-tabs__panel .competitor-crawls-table-wrap,
.app-main__content .company-site-tabs__panel .competitor-new-urls {
  margin-top: 0.75rem;
}

.app-main__content .company-show-section--pillar-list .competitor-crawls-table-wrap.admin-card {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #f5e0dc;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-main__content .company-show-section--pillar-list .competitor-crawls-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.app-main__content .company-show-section--pillar-list .competitor-crawls-table thead {
  background: linear-gradient(180deg, #fef0ed 0%, rgba(249, 149, 132, 0.06) 100%);
}
.app-main__content .company-show-section--pillar-list .competitor-crawls-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #F99584;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #f5e0dc;
}
.app-main__content .company-show-section--pillar-list .competitor-crawls-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f5e0dc;
  color: #2d2524;
  vertical-align: top;
}
.app-main__content .company-show-section--pillar-list .competitor-crawls-table tbody tr:last-child td {
  border-bottom: none;
}
.app-main__content .company-show-section--pillar-list .competitor-crawls-table tbody tr:hover {
  background: rgba(249, 149, 132, 0.04);
}

.app-main__content .pillar-row--stale td {
  background: rgba(249, 149, 132, 0.05);
}

.app-main__content .pillar-stale-marker {
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #F99584;
  background: #fef0ed;
  border: 1px solid #fce0da;
}

.company-social-repost-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 149, 132, 0.4);
  background: rgba(249, 149, 132, 0.15);
  color: #b45848;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-main__content .admin-dashboard.editorial-edit-layout {
  max-width: none !important;
  width: 100%;
}

.app-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  width: 100%;
}
@media (min-width: 960px) {
  .app-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-grid {
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    gap: 1.5rem;
  }
}

.app-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-form,
.app-main__content .admin-dashboard.editorial-edit-layout .editorial-edit-sidebar {
  min-width: 0;
}

.app-main__content .admin-dashboard.editorial-dashboard {
  max-width: none !important;
  width: 100%;
}

.app-from-gestion-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 1.5rem 0;
  padding: 0.875rem 1.25rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.12);
}

.app-from-gestion-banner__text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2d2524;
}

.app-from-gestion-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #2563eb;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.app-from-gestion-banner__btn:hover {
  background: #1d4ed8;
  color: #fff;
}

.app-from-gestion-banner__icon {
  width: 1.1em;
  height: 1.1em;
}

.app-sidebar__select {
  width: calc(100% - 1rem);
  height: 2.25rem;
  margin: 0 0.5rem 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 10px;
  border: 1px solid #f5e0dc;
  background: #fff;
  color: #2d2524;
  font-size: 0.875rem;
  font-weight: 500;
}

.app-email-verify-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.125rem 1.25rem;
  background: #fef0ed;
  border: 1px solid #f5e0dc;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(249, 149, 132, 0.08);
}

.app-email-verify-banner__content {
  flex: 1;
  min-width: min(100%, 240px);
}

.app-email-verify-banner__title {
  margin: 0 0 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d2524;
}

.app-email-verify-banner__text {
  margin: 0;
  font-size: 0.875rem;
  color: #7d6e6b;
  line-height: 1.5;
}
.app-email-verify-banner__text strong {
  color: #2d2524;
  word-break: break-all;
}

.app-email-verify-banner__form {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
}

.app-email-verify-banner__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d2524;
  background: #F99584;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.app-email-verify-banner__submit:hover {
  background: #f8806c;
}

.app-email-verify-banner__submit-icon {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.company-social-post__text {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background-color: #fffbfa;
  border: 1px solid #f5e0dc;
  white-space: pre-wrap;
  line-height: 1.28 !important;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
}
.company-social-post__text a {
  color: #c45c4a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.company-social-post__text a:hover {
  color: #9d4333;
}

.company-social-post--linkedin {
  max-width: 640px;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem 0.95rem;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.company-social-post--linkedin .company-social-post__meta {
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}
.company-social-post--linkedin .company-social-post__meta a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
.company-social-post--linkedin .company-social-post__meta a:hover {
  color: #004182;
  text-decoration: underline;
}

.company-social-post--linkedin .company-social-post__text {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.42857 !important;
  letter-spacing: 0;
  color: #1f2328;
  white-space: pre-line;
}
.company-social-post--linkedin .company-social-post__text a {
  color: #0a66c2;
  font-weight: 600;
  text-decoration: none;
}
.company-social-post--linkedin .company-social-post__text a:hover {
  color: #004182;
  text-decoration: underline;
}

.company-social-post__header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.55rem;
}

.company-social-post__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #d9e3ee;
  background: #fff;
}

.company-social-post__avatar--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6b7785;
}

.company-social-post__avatar-icon {
  width: 20px;
  height: 20px;
}

.company-social-post__header-main {
  min-width: 0;
}

.company-social-post__author {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2328;
}

.company-social-post__header-sub {
  margin-top: 0.1rem;
  font-size: 12.5px;
  line-height: 1.35;
  color: #6b7785;
}

.company-social-post__media-slider {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.4rem;
  align-items: center;
}

.company-social-post__media-slider--single {
  grid-template-columns: minmax(0, 1fr);
}

.company-social-post__media-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.company-social-post__media-track {
  display: flex;
  transition: transform 0.25s ease;
  will-change: transform;
}

.company-social-post__media-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.company-social-post__media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e3ee;
  background: #f4f8fb;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.15rem;
}

.company-social-post__media-video-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e3ee;
  background: #0f1419;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}

.company-social-post__media-video {
  display: block;
  width: 100%;
  max-height: min(70vh, 720px);
  vertical-align: middle;
}

.company-social-post__media-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(70vh, 720px);
  object-fit: contain;
}

.company-social-post__media-nav {
  width: 32px;
  height: 32px;
  border: 1px solid #d9e3ee;
  border-radius: 999px;
  background: #fff;
  color: #0a66c2;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.company-social-post__media-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.company-social-post__media-slider--single .company-social-post__media-nav {
  display: none;
}

.company-social-post__media-dots {
  margin-top: 0.45rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.company-social-post__media-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #c9d3df;
  cursor: pointer;
  padding: 0;
}

.company-social-post__media-dot.is-active {
  background: #0a66c2;
}

.company-social-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 1.25rem;
  align-items: start;
}

.company-social-post-layout__charts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.company-social-mini-chart {
  border: 1px solid #f5e0dc;
  border-radius: 10px;
  background: #fff;
  padding: 0.5rem 0.65rem 0.35rem;
}

.company-social-mini-chart__title {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #7d6e6b;
}

.company-social-mini-chart__canvas-wrap {
  position: relative;
  height: 130px;
}

@media (max-width: 1080px) {
  .company-social-post-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/*# sourceMappingURL=app.output.css.map */
