:root {
  --lme-bg-start: #3422ff;
  --lme-bg-end: #ff41b4;
  --lme-surface: rgba(255, 255, 255, 0.92);
  --lme-surface-alt: rgba(255, 255, 255, 0.75);
  --lme-border: rgba(255, 255, 255, 0.35);
  --lme-text: #1f2346;
  --lme-muted: #5b5f86;
  --lme-card-pink: linear-gradient(145deg, #ff8cd3, #ff5a9b);
  --lme-card-cyan: linear-gradient(145deg, #66e0ff, #1fb2ff);
  --lme-card-lime: linear-gradient(145deg, #a4ff9f, #44d36c);
  --lme-shadow: 0 20px 40px rgba(16, 19, 53, 0.25);
}

* {
  box-sizing: border-box;
}

body.lme-body {
  min-height: 100vh;
  margin: 0;
  font-family: 'Poppins', 'Chakra Petch', sans-serif;
  color: var(--lme-text);
  background: radial-gradient(circle at top, rgba(255,255,255,0.25), rgba(255,255,255,0)) no-repeat,
              linear-gradient(160deg, var(--lme-bg-start), var(--lme-bg-end));
  position: relative;
  padding-bottom: 5vh;
}

.lme-gradient {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='1440' height='900' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='50%25' cy='0%25' r='90%25'%3E%3Cstop stop-color='%23ffffff' stop-opacity='0.35'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='0'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='1440' height='900'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.lme-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  z-index: 10;
  position: relative;
}

.lme-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: #fff;
}

.lme-logo {
  height: 52px;
  width: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  padding: 6px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.lme-brand__title {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.lme-brand__subtitle {
  font-size: 0.85rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lme-nav__links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lme-chip {
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lme-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.lme-chip--ghost {
  background: rgba(8, 12, 49, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.lme-shell {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  margin-top: 1rem;
  max-width: 1200px;
  padding: 2.5rem 3rem;
  background: var(--lme-surface);
  border-radius: 28px;
  border: 1px solid var(--lme-border);
  box-shadow: var(--lme-shadow);
}

.lme-warning {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--lme-muted);
  background: var(--lme-surface-alt);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  border: 1px dashed rgba(31, 35, 70, 0.15);
  margin-bottom: 1.8rem;
}

.lme-warning p {
  margin: 0;
  font-size: 0.95rem;
}

.lme-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lme-hero h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}

.lme-hero p {
  margin: 0;
  max-width: 560px;
  color: var(--lme-muted);
}

.lme-score {
  background: rgba(10, 16, 55, 0.85);
  color: #fff;
  border-radius: 18px;
  padding: 1.2rem 1.5rem;
  text-align: right;
  box-shadow: 0 15px 30px rgba(10, 16, 55, 0.35);
}

.lme-score__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  opacity: 0.75;
}

.lme-score__value {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
}

.lme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lme-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 24px;
  color: var(--lme-text);
  text-decoration: none;
  overflow: hidden;
  background: var(--lme-surface-alt);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 35px rgba(20, 25, 70, 0.15);
}

.lme-card:focus {
  text-decoration: none;
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
}

.lme-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lme-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 26px 45px rgba(20, 25, 70, 0.2);
}

.lme-card:hover::after {
  opacity: 1;
}

.lme-card--pink {
  background-image: var(--lme-card-pink);
}

.lme-card--cyan {
  background-image: var(--lme-card-cyan);
}

.lme-card--lime {
  background-image: var(--lme-card-lime);
}

.lme-card__badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.35);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1.1rem;
}

.lme-card h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.lme-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 220px;
}

.lme-card__footer {
  margin-top: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.lme-mini-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.lme-mini-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(31, 35, 70, 0.1);
  box-shadow: 0 12px 28px rgba(20, 25, 70, 0.12);
}

.lme-mini-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.lme-mini-card p {
  margin: 0;
  color: var(--lme-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

textarea,
input,
select {
  border-radius: 14px !important;
  border: 1px solid rgba(31, 35, 70, 0.1) !important;
  padding: 0.85rem 1rem !important;
  font-family: 'Poppins', sans-serif !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: inset 0 1px 2px rgba(20, 25, 70, 0.05);
}

textarea:focus,
input:focus,
select:focus {
  border-color: rgba(52, 34, 255, 0.65) !important;
  box-shadow: 0 0 0 0.2rem rgba(52, 34, 255, 0.15) !important;
}

button.btn,
input.btn,
a.btn {
  border-radius: 999px !important;
  padding: 0.8rem 1.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-primary {
  background: linear-gradient(135deg, #6c57ff, #3d2aff) !important;
  border: none !important;
  box-shadow: 0 12px 22px rgba(61, 42, 255, 0.25);
}

.btn-success {
  background: linear-gradient(135deg, #4fd67f, #1db863) !important;
  border: none !important;
  box-shadow: 0 12px 22px rgba(31, 184, 99, 0.25);
}

.btn-outline-secondary,
.btn-outline-light {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: var(--lme-text) !important;
}

.btn-outline-primary {
  background: rgba(61, 42, 255, 0.12) !important;
  border: 1px solid rgba(61, 42, 255, 0.45) !important;
  color: #3d2aff !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: rgba(61, 42, 255, 0.22) !important;
  color: #2013ff !important;
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(22, 28, 73, 0.18) !important;
}

.lme-shell h1,
.lme-shell h2,
.lme-shell h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--lme-text);
}

.lme-shell h2 {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.lme-shell h2.text-center {
  font-size: 2.1rem;
}

.lme-shell p.text-center {
  max-width: 760px;
  margin: 0 auto 1.8rem;
  color: var(--lme-muted);
  font-size: 1rem;
}

.lme-form,
.form-ia,
form.lme-form {
  background: var(--lme-surface-alt);
  border: 1px solid var(--lme-border);
  border-radius: 24px;
  padding: 2rem 2.4rem;
  box-shadow: var(--lme-shadow);
  margin: 0 auto 2.5rem;
  max-width: 880px;
}

.lme-form legend {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}

.lme-form .form-label {
  font-weight: 600;
  color: var(--lme-text);
}

.lme-form .d-grid,
.form-ia .d-grid {
  margin-top: 1.6rem;
}

.lme-alert,
.alert {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.85);
  color: var(--lme-text);
  box-shadow: 0 12px 24px rgba(22, 28, 73, 0.12);
}

.alert-warning,
.lme-alert--warning {
  background: rgba(255, 222, 138, 0.25) !important;
  border-color: rgba(255, 184, 0, 0.45) !important;
  color: #7a5400 !important;
}

.bg-light {
  background: rgba(255, 255, 255, 0.9) !important;
}

.card,
.card.shadow-sm {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 36px rgba(20, 25, 70, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 46px rgba(20, 25, 70, 0.2);
}

.card-title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.4rem;
}

.card-text {
  color: var(--lme-muted);
}

.lme-output,
.border.p-3.bg-light.rounded,
.bg-light.p-3.border.rounded,
.bg-light.p-3.border.rounded.mb-3,
.bg-light.p-3.mt-3.border.rounded {
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px dashed rgba(52, 34, 255, 0.35) !important;
  border-radius: 20px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  padding: 1.6rem !important;
  min-height: 160px;
}

.lme-output pre,
#resultado-streaming,
#respuesta {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  color: var(--lme-text);
}

.lme-output pre,
#resultado-streaming {
  max-height: 420px;
  overflow-y: auto;
  overflow-x: auto;
  padding-right: 0.35rem;
}

.lme-motor-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.lme-actions,
.d-grid.mt-3 {
  display: flex !important;
  gap: 1rem;
  justify-content: flex-end;
}

.lme-actions a,
.d-grid.mt-3 a {
  width: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lme-preview {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--lme-border);
  border-radius: 26px;
  box-shadow: 0 22px 45px rgba(16, 19, 53, 0.18);
  padding: 2.2rem;
  margin-top: 2.2rem;
}

.lme-preview__title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

.lme-preview__grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lme-preview__block h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.editable-area {
  border-radius: 18px;
  border: 1px solid rgba(31, 35, 70, 0.12);
  background: rgba(255, 255, 255, 0.94);
  padding: 1rem 1.1rem;
  min-height: 140px;
  line-height: 1.45;
  transition: box-shadow 0.2s ease;
}

.editable-area:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(61, 42, 255, 0.2);
}

.list-group {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(20, 25, 70, 0.14);
}

.list-group-item {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(31, 35, 70, 0.08) !important;
  padding: 1rem 1.25rem;
  font-weight: 500;
  color: var(--lme-text);
}

.list-group-item + .list-group-item {
  border-top-color: rgba(31, 35, 70, 0.12) !important;
}

.lme-motor-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lme-motor-selector__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lme-motor-btn.active {
  background: linear-gradient(135deg, #6c57ff, #3d2aff) !important;
  color: #fff !important;
  border-color: rgba(61, 42, 255, 0.6) !important;
  box-shadow: 0 12px 24px rgba(61, 42, 255, 0.25) !important;
}

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

@media (max-width: 576px) {
  textarea.form-control {
    min-height: 180px;
  }
}

@media (max-width: 992px) {
  .lme-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .lme-shell {
    padding: 2rem 1.4rem;
  }

  .lme-hero {
    flex-direction: column;
    text-align: center;
  }

  .lme-score {
    text-align: center;
  }
}

/* FAQ interactivo */
.lme-faq-widget {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.lme-faq-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, rgba(74, 80, 236, 0.92), rgba(255, 119, 183, 0.9));
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 18px 35px rgba(18, 22, 66, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lme-faq-toggle__icon {
  font-size: 1.2rem;
  line-height: 1;
}

.lme-faq-toggle:hover,
.lme-faq-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 45px rgba(18, 22, 66, 0.35);
  outline: none;
}

.lme-faq-toggle.is-open {
  background: rgba(20, 26, 74, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 45px rgba(10, 15, 60, 0.32);
}

.lme-faq-panel {
  position: fixed;
  bottom: 5.6rem;
  right: 2.3rem;
  width: min(420px, calc(100vw - 3rem));
  max-height: calc(100vh - 6rem);
  background: var(--lme-surface);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 30px 60px rgba(16, 19, 53, 0.35);
  padding: 1.4rem;
  overflow: hidden;
  backdrop-filter: blur(9px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lme-faq-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lme-faq-panel__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.lme-faq-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.lme-faq-panel__eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(31, 35, 70, 0.55);
}

.lme-faq-panel__title {
  margin: 0.15rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lme-text);
}

.lme-faq-panel__close {
  border: none;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--lme-text);
  transition: background 0.2s ease, transform 0.2s ease;
}

.lme-faq-panel__close:hover,
.lme-faq-panel__close:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.05);
  outline: none;
}

.lme-faq-panel__body {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.lme-faq-panel__body::-webkit-scrollbar {
  width: 6px;
}

.lme-faq-panel__body::-webkit-scrollbar-thumb {
  background: rgba(31, 35, 70, 0.25);
  border-radius: 4px;
}

.lme-faq-panel__intro {
  margin: 0 0 0.8rem 0;
  color: var(--lme-muted);
  font-size: 0.95rem;
}

.lme-faq-accordion .accordion-item {
  border-radius: 16px;
  border: 1px solid rgba(31, 35, 70, 0.08);
  overflow: hidden;
  margin-bottom: 0.6rem;
  background: rgba(255, 255, 255, 0.82);
}

.lme-faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  gap: 0.4rem;
}

.lme-faq-accordion .accordion-body {
  font-size: 0.92rem;
  color: var(--lme-text);
}

.lme-faq-panel__extra {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(74, 80, 236, 0.08);
  font-size: 0.9rem;
  color: var(--lme-text);
}

body.faq-open {
  padding-bottom: 7rem;
}

@media (max-width: 768px) {
  .lme-faq-widget {
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .lme-faq-panel {
    bottom: 5rem;
    right: 1rem;
    width: calc(100vw - 2rem);
    max-height: calc(100vh - 5rem);
  }
}
.lme-admin-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}

.lme-admin-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 35px rgba(20, 25, 70, 0.12);
  color: var(--lme-text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.lme-admin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(20, 25, 70, 0.18);
  text-decoration: none;
}

.lme-admin-card__icon {
  font-size: 2rem;
}

.lme-admin-card__title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.45rem;
  margin: 0;
}

.lme-admin-card__description {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(20, 25, 70, 0.75);
}

.lme-admin-card__action {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3b46ff;
}

.lme-admin-card__action::after {
  content: \" →\";
}

/* === Admin layout enhancements === */
.lme-admin-tabs {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.lme-admin-tabs .nav-link,
.lme-admin-tabs a.nav-link {
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  color: rgba(20, 25, 70, 0.75);
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lme-admin-tabs .nav-link:hover,
.lme-admin-tabs a.nav-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(20, 25, 70, 0.12);
  color: rgba(20, 25, 70, 0.9);
}

.lme-admin-tabs .nav-link.active,
.lme-admin-tabs .nav-link.active:hover {
  background: linear-gradient(125deg, #6158ff, #9a63ff);
  color: #fff;
  box-shadow: 0 14px 24px rgba(97, 88, 255, 0.35);
}

.lme-admin-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 24px 45px rgba(20, 25, 70, 0.16);
  backdrop-filter: blur(18px);
  margin-bottom: 2rem;
}

.lme-admin-box h5 {
  font-family: 'Chakra Petch', sans-serif;
  letter-spacing: 0.4px;
}

.lme-admin-box--action form {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .lme-admin-box--action form {
    grid-template-columns: minmax(240px, 1fr) 220px;
    align-items: end;
  }
}

.lme-admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #50e47c, #2fb06b);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 18px 32px rgba(47, 176, 107, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lme-admin-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(47, 176, 107, 0.38);
  color: #fff;
}

.lme-admin-log {
  background: #151b3f;
  border-radius: 18px;
  color: #f4f6ff;
  padding: 1rem 1.2rem;
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  height: 320px;
  overflow-y: auto;
  margin-top: 1.5rem;
}

.lme-admin-table table {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.75);
}

.lme-admin-table thead {
  background: rgba(97, 88, 255, 0.12);
}

.lme-admin-table tbody tr:hover {
  background: rgba(97, 88, 255, 0.08);
}

.lme-admin-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(97, 88, 255, 0.18);
  color: rgba(28, 18, 89, 0.9);
}

.lme-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-weight: 600;
  color: rgba(20, 25, 70, 0.85);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lme-admin-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(20, 25, 70, 0.2);
  color: rgba(20, 25, 70, 1);
}

.lme-admin-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(97, 88, 255, 0.15);
  color: rgba(44, 33, 122, 0.95);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease;
}

.lme-admin-back:hover {
  transform: translateY(-2px);
  color: rgba(44, 33, 122, 1);
}

.lme-admin-divider {
  height: 1px;
  background: rgba(20, 25, 70, 0.12);
  margin: 2rem 0 1.4rem;
}
