:root {
  --nlm-bg: #f2f4f8;
  --nlm-surface: #ffffff;
  --nlm-surface-soft: #f7f9fc;
  --nlm-border: #d4dce8;
  --nlm-border-strong: #b8c5d8;
  --nlm-text: #0f172a;
  --nlm-text-muted: #5b6474;
  --nlm-primary: #1c5fd4;
  --nlm-primary-hover: #174fb1;
  --nlm-primary-soft: #e9f1ff;
  --nlm-success: #0f7a53;
  --nlm-danger: #bc1b2e;
  --nlm-shadow-soft: 0 14px 28px rgba(11, 20, 45, 0.08);
  --nlm-shadow-strong: 0 30px 60px rgba(8, 18, 41, 0.28);
}

#nodelogic-lm-modal,
#nodelogic-lm-modal * {
  box-sizing: border-box;
}

#nodelogic-lm-modal {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.nodelogic-lm-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin: 26px 0;
}

.nodelogic-lm-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid var(--nlm-border);
  border-radius: 16px;
  box-shadow: var(--nlm-shadow-soft);
  padding: 22px;
}

.nodelogic-lm-card h3 {
  margin: 0;
  color: var(--nlm-text);
  font-size: 1.25rem;
  line-height: 1.3;
}

.nodelogic-lm-price {
  margin: 0;
  color: var(--nlm-text);
  font-size: 1.62rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nodelogic-lm-tagline {
  margin: 0;
  color: var(--nlm-text-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.nodelogic-lm-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--nlm-text-muted);
  line-height: 1.5;
}

.nodelogic-lm-card li + li {
  margin-top: 4px;
}

.nodelogic-lm-buy,
.nodelogic-lm-go-checkout {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.nodelogic-lm-buy,
.nodelogic-lm-go-checkout {
  background: var(--nlm-primary);
  color: #ffffff;
}

.nodelogic-lm-buy:hover,
.nodelogic-lm-go-checkout:hover {
  background: var(--nlm-primary-hover);
}

.nodelogic-lm-go-checkout.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.nodelogic-lm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 16, 34, 0.62);
}

.nodelogic-lm-modal[hidden] {
  display: none;
}

.nodelogic-lm-modal__content {
  width: min(1020px, 100%);
  max-height: 94vh;
  overflow: auto;
  position: relative;
  background: var(--nlm-surface);
  border: 1px solid var(--nlm-border);
  border-radius: 16px;
  box-shadow: var(--nlm-shadow-strong);
  color: var(--nlm-text);
  padding: 26px;
}

.nodelogic-lm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border: 1px solid var(--nlm-border);
  border-radius: 9px;
  background: var(--nlm-surface-soft);
  color: var(--nlm-text-muted);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
}

.nodelogic-lm-close:hover {
  border-color: var(--nlm-border-strong);
  color: var(--nlm-text);
}

.nodelogic-lm-step {
  border: 1px solid var(--nlm-border);
  border-radius: 14px;
  background: #ffffff;
  padding: 18px;
}

.nodelogic-lm-step h3 {
  margin: 0 0 8px;
  font-size: 1.26rem;
  font-weight: 800;
}

.nodelogic-lm-step p {
  margin: 0;
  color: var(--nlm-text-muted);
  line-height: 1.5;
}

.nodelogic-lm-plan-overview {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  background: var(--nlm-surface-soft);
}

.nodelogic-lm-plan-overview__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.nodelogic-lm-plan-overview__name {
  margin: 0;
  color: var(--nlm-text);
  font-size: 1.05rem;
  font-weight: 800;
}

.nodelogic-lm-plan-overview__tagline {
  margin: 6px 0 0;
  color: var(--nlm-text-muted);
  font-size: 0.92rem;
}

.nodelogic-lm-plan-overview__price {
  margin: 0;
  color: var(--nlm-text);
  font-size: 1.16rem;
  font-weight: 800;
  white-space: normal;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.nlm-price-trial {
  color: var(--nlm-primary);
  font-size: 1rem;
  font-weight: 700;
}

.nlm-price-then {
  color: var(--nlm-text-muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.nodelogic-lm-plan-overview__features {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--nlm-text-muted);
  line-height: 1.5;
}

.nodelogic-lm-domain-settings {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  background: #ffffff;
}

.nodelogic-lm-domain-settings__label {
  display: block;
  color: var(--nlm-text);
  font-weight: 700;
  margin-bottom: 4px;
}

.nodelogic-lm-domain-settings__help {
  margin: 0 0 10px;
  color: var(--nlm-text-muted);
  font-size: 0.9rem;
}

.nodelogic-lm-sites-fixed,
#nodelogic-lm-agency-sites {
  width: 100%;
  max-width: 220px;
  border: 1px solid var(--nlm-border-strong);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: var(--nlm-text);
  background: #ffffff;
}

#nodelogic-lm-agency-sites:focus {
  outline: none;
  border-color: var(--nlm-primary);
  box-shadow: 0 0 0 3px rgba(28, 95, 212, 0.14);
}

.nodelogic-lm-sites-choice {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nodelogic-lm-sites-option {
  min-width: 52px;
  padding: 8px 12px;
  border: 1px solid var(--nlm-border-strong);
  border-radius: 9px;
  background: #ffffff;
  color: var(--nlm-text);
  font-weight: 700;
  cursor: pointer;
}

.nodelogic-lm-sites-option:hover {
  border-color: var(--nlm-primary);
}

.nodelogic-lm-sites-option.is-active {
  border-color: var(--nlm-primary);
  background: var(--nlm-primary-soft);
  color: #173f88;
}

.nodelogic-lm-checkout-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.85fr);
  gap: 16px;
  align-items: start;
}

.nodelogic-lm-checkout-copy {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  padding: 16px;
}

.nodelogic-lm-checkout-copy h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--nlm-text);
}

.nodelogic-lm-checkout-copy p {
  margin: 0;
  color: var(--nlm-text-muted);
  line-height: 1.6;
}

.nodelogic-lm-summary {
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  box-shadow: var(--nlm-shadow-soft);
  height: fit-content;
}

.nodelogic-lm-summary h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--nlm-text);
}

.nodelogic-lm-summary dl {
  margin: 0 0 14px;
}

.nodelogic-lm-summary dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.nodelogic-lm-summary dt {
  color: var(--nlm-text-muted);
  font-size: 0.92rem;
}

.nodelogic-lm-summary dd {
  margin: 0;
  color: var(--nlm-text);
  font-weight: 800;
  text-align: right;
}

.nodelogic-lm-summary .nodelogic-lm-go-checkout {
  width: 100%;
  margin-top: 6px;
}

.nodelogic-lm-modal-note {
  margin-top: 12px;
  min-height: 1.2em;
  font-size: 0.92rem;
}

.nodelogic-lm-modal-note.is-info {
  color: var(--nlm-success);
}

.nodelogic-lm-modal-note.is-error {
  color: var(--nlm-danger);
}

.nodelogic-lm-license-success {
  border: 1px solid var(--nlm-border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--nlm-shadow-soft);
  padding: 20px;
}

.nodelogic-lm-license-success h3 {
  margin: 0 0 10px;
  color: var(--nlm-text);
}

.nodelogic-lm-license-success__key {
  margin: 14px 0;
}

.nodelogic-lm-license-success__key code {
  display: inline-block;
  border: 1px solid var(--nlm-border-strong);
  background: var(--nlm-surface-soft);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--nlm-text);
  font-weight: 700;
}

.nodelogic-lm-license-success__meta {
  margin: 0 0 10px;
  padding-left: 18px;
  color: var(--nlm-text-muted);
}

body.nodelogic-modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .nodelogic-lm-checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .nodelogic-lm-modal__content {
    padding: 16px;
  }
}

/* ============================================================
   Customer Portal
   ============================================================ */

.nodelogic-lm-portal,
.nodelogic-lm-portal * {
  box-sizing: border-box;
}

.nodelogic-lm-portal {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  max-width: 520px;
  margin: 0 auto;
}

/* Portal cards */
.nodelogic-lm-portal__auth,
.nodelogic-lm-portal__licenses,
.nodelogic-lm-portal__dashboard {
  background: var(--nlm-surface);
  border: 1px solid var(--nlm-border);
  border-radius: 16px;
  box-shadow: var(--nlm-shadow-soft);
  padding: 32px;
}

.nodelogic-lm-portal__auth h3,
.nodelogic-lm-portal__licenses h3,
.nodelogic-lm-portal__dashboard h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: var(--nlm-text);
}

.nodelogic-lm-portal__auth > p {
  margin: 0 0 24px;
  color: var(--nlm-text-muted);
  font-size: 0.95rem;
}

.nodelogic-lm-portal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.nodelogic-lm-portal__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nlm-text);
}

.nodelogic-lm-portal__field input {
  padding: 10px 14px;
  border: 1px solid var(--nlm-border);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--nlm-text);
  background: var(--nlm-surface-soft);
  transition: border-color 0.15s;
  width: 100%;
}

.nodelogic-lm-portal__field input:focus {
  outline: none;
  border-color: var(--nlm-primary);
  background: #fff;
}

.nodelogic-lm-portal__error {
  color: var(--nlm-danger);
  font-size: 0.875rem;
  margin: 0 0 12px;
  padding: 10px 14px;
  background: #fff0f1;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
}

.nodelogic-lm-portal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.nodelogic-lm-portal__header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--nlm-text);
}

.nodelogic-lm-portal__logout {
  background: none;
  border: 1px solid var(--nlm-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--nlm-text-muted);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.nodelogic-lm-portal__logout:hover {
  border-color: var(--nlm-border-strong);
  color: var(--nlm-text);
}

.nodelogic-lm-portal__header-sub {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--nlm-text-muted);
  word-break: break-all;
}

.nodelogic-lm-portal__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nodelogic-lm-portal__details {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 0;
}

.nodelogic-lm-portal__details > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--nlm-border);
  font-size: 0.9rem;
}

.nodelogic-lm-portal__details > div:last-child {
  border-bottom: none;
}

.nodelogic-lm-portal__details dt {
  color: var(--nlm-text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.nodelogic-lm-portal__details dd {
  margin: 0;
  color: var(--nlm-text);
  font-weight: 600;
  text-align: right;
  word-break: break-all;
}

/* Download button */
.nodelogic-lm-download-btn {
  display: inline-block;
  background: var(--nlm-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 24px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.15s;
}

.nodelogic-lm-download-btn:hover {
  background: var(--nlm-primary-hover) !important;
  color: #fff !important;
}

.nodelogic-lm-portal__empty {
  margin: 10px 0 0;
  color: var(--nlm-text-muted);
  font-size: 0.9rem;
}

.nodelogic-lm-portal__license-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nodelogic-lm-portal__license-card {
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  background: var(--nlm-surface-soft);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.nodelogic-lm-portal__license-card:hover {
  border-color: var(--nlm-primary);
  box-shadow: 0 0 0 2px rgba(28, 95, 212, 0.08);
}

.nodelogic-lm-portal__license-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nodelogic-lm-portal__license-key {
  margin: 0;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.92rem;
  color: var(--nlm-text);
  font-weight: 700;
  word-break: break-all;
}

.nodelogic-lm-portal__license-status {
  border: 1px solid var(--nlm-border);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--nlm-text-muted);
  background: #fff;
  text-transform: uppercase;
}

.nodelogic-lm-portal__license-status.is-active,
.nodelogic-lm-portal__license-status.is-generated {
  border-color: #86efac;
  color: #166534;
  background: #ecfdf3;
}

.nodelogic-lm-portal__license-status.is-inactive {
  border-color: #fcd34d;
  color: #92400e;
  background: #fffbeb;
}

.nodelogic-lm-portal__license-status.is-deactivated {
  border-color: #fca5a5;
  color: #991b1b;
  background: #fef2f2;
}

.nodelogic-lm-portal__license-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--nlm-text-muted);
}

.nodelogic-lm-portal__license-actions {
  display: flex;
  justify-content: flex-end;
}

.nodelogic-lm-portal__manage-btn {
  padding: 8px 14px !important;
  font-size: 0.84rem !important;
}

/* ============================================================
   Free trial badge — pricing cards
   ============================================================ */

.nodelogic-lm-card--featured {
  border-color: var(--nlm-primary);
  box-shadow: 0 0 0 2px var(--nlm-primary-soft), var(--nlm-shadow-soft);
}

.nodelogic-lm-card__trial-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1c5fd4 0%, #2d7aff 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Trial badge inside the checkout modal */
.nodelogic-lm-trial-badge {
  display: none !important;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e9f1ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e40af;
}

.nodelogic-lm-trial-badge.is-visible {
  display: flex !important;
}

.nodelogic-lm-trial-badge__icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   Trial-aware price display in pricing cards
   ============================================================ */

.nodelogic-lm-price__trial {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--nlm-primary);
}

.nodelogic-lm-price__then {
  font-size: 0.8rem;
  color: var(--nlm-text-muted);
  font-weight: 400;
}

/* ============================================================
   Portal — subscription management sections
   ============================================================ */

.nodelogic-lm-portal__cancel-notice {
  background: #fff8e1;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  padding: 12px 16px;
  color: #92400e;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.nodelogic-lm-portal__section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--nlm-border);
}

.nodelogic-lm-portal__section h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--nlm-text);
}

.nodelogic-lm-portal__section-desc {
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--nlm-text-muted);
}

.nodelogic-lm-portal__section--danger h4 {
  color: var(--nlm-danger);
}

.nodelogic-lm-portal__btn-danger {
  background: none;
  border: 1px solid var(--nlm-danger);
  color: var(--nlm-danger);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nodelogic-lm-portal__btn-danger:hover {
  background: var(--nlm-danger);
  color: #fff;
}

.nodelogic-lm-portal__msg {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.nodelogic-lm-portal__msg.is-success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: var(--nlm-success);
}

.nodelogic-lm-portal__msg.is-error {
  background: #fff0f1;
  border: 1px solid #f5c6cb;
  color: var(--nlm-danger);
}

/* Plan option cards */
.nodelogic-lm-portal__plan-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nodelogic-lm-portal__plan-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border: 1px solid var(--nlm-border);
  border-radius: 12px;
  background: var(--nlm-surface-soft);
}

.nlm-plan-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nlm-plan-badge--upgrade {
  background: #dbeafe;
  color: #1e40af;
}

.nlm-plan-badge--downgrade {
  background: #fef3c7;
  color: #92400e;
}

.nlm-plan-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 120px;
}

.nlm-plan-info strong {
  font-size: 0.95rem;
  color: var(--nlm-text);
}

.nlm-plan-price {
  font-size: 0.85rem;
  color: var(--nlm-text-muted);
}

.nlm-plan-sites {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--nlm-text-muted);
}

.nlm-plan-sites__btns {
  display: flex;
  gap: 4px;
}

.nlm-sites-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--nlm-border);
  border-radius: 6px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}

.nlm-sites-btn.is-active,
.nlm-sites-btn:hover {
  background: var(--nlm-primary);
  border-color: var(--nlm-primary);
  color: #fff;
}

.nlm-agency-sites-input {
  width: 80px;
  padding: 6px 10px;
  border: 1px solid var(--nlm-border);
  border-radius: 6px;
  font-size: 0.9rem;
}

.nlm-plan-select-btn {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.85rem !important;
  padding: 8px 14px !important;
}

.nlm-plan-select-btn.is-disabled,
.nlm-plan-select-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Shared auth UI (checkout modal + customer portal) */
.nlm-auth-switch {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--nlm-text-muted);
}

.nlm-auth-switch a {
  color: var(--nlm-primary);
  font-weight: 600;
  text-decoration: none;
}

.nlm-auth-switch a:hover {
  text-decoration: underline;
}

.nlm-auth-hint {
  margin: 0 0 12px !important;
  color: var(--nlm-text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.nlm-auth-success {
  margin: 0 0 12px;
  padding: 10px 14px;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  background: #ecfdf5;
  color: var(--nlm-success);
  font-size: 0.875rem;
}

.nlm-auth-notice {
  margin: 0;
  padding: 12px 16px;
  border-bottom: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
}

.nlm-auth-notice--success {
  background: #ecfdf5;
  border-bottom-color: #6ee7b7;
  color: #166534;
}

@media (max-width: 680px) {
  .nodelogic-lm-portal__auth,
  .nodelogic-lm-portal__licenses,
  .nodelogic-lm-portal__dashboard {
    padding: 20px;
  }

  .nodelogic-lm-portal__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nodelogic-lm-portal__header-actions {
    justify-content: flex-start;
  }

  .nodelogic-lm-portal__license-actions {
    justify-content: flex-start;
  }
}
