.dm-carousel-section {
  margin: 4rem auto 2rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  max-width: 1200px;
}

.dm-carousel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dm-carousel-actions {
  display: flex;
  gap: 0.5rem;
}

.dm-carousel-nav {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(180deg, #ffffff, #f7f8fa);
  color: #4b5563;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dm-carousel-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.dm-carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 850px;
  aspect-ratio: 4 / 3;
  max-height: 480px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 20px;
  background: #f8f9fa;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

.dm-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: #9ca3af;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.dm-nav-btn:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-50%) scale(1.02);
}

.dm-nav-btn--left {
  left: 12px;
}

.dm-nav-btn--right {
  right: 12px;
}

.dm-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
  position: relative;
}

.dm-carousel-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.dm-carousel-media {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}

.dm-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.dm-carousel-slide.vertical img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 16px 16px 0 0;
}

.dm-carousel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
  border-radius: 16px 16px 0 0;
  padding: 1.25rem 1.5rem;
  color: #ffffff;
}

.dm-carousel-caption {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dm-carousel-caption h3 {
  font-size: 1.1rem;
  font-weight: 800;
}

.dm-carousel-meta {
  font-size: 0.9rem;
  color: #475569;
  font-weight: 500;
  text-align: left;
}

.dm-carousel-info-panel {
  width: 100%;
  max-width: 850px;
  margin: 0.8rem auto 0;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dm-carousel-reference {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  letter-spacing: -0.01em;
  text-align: left;
}

.dm-carousel-empty {
  width: 100%;
  text-align: center;
  padding: 2.5rem 1rem;
  color: #94a3b8;
  font-weight: 600;
}

.dm-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.dm-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #e5e7eb;
  transition: width 0.2s ease, background 0.2s ease;
}

.dm-carousel-dot.is-active {
  width: 20px;
  background: #7ab800;
}

.dm-console {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 18px auto;
  padding: 10px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.dm-console-left,
.dm-console-center,
.dm-console-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dm-console-btn {
  min-width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #7ab800;
  color: #7ab800;
  border-radius: 12px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.25s;
}

.dm-console-btn:hover {
  background: #7ab800;
  color: white;
}

/* Tooltips minimalistas para los controles del carrusel */
.dm-console-btn[data-tip] {
  position: relative;
}

.dm-console-btn[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(17, 24, 39, 0.94);
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.dm-console-btn[data-tip]::before {
  content: "";
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 10px;
  height: 6px;
  background: rgba(17, 24, 39, 0.94);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.dm-console-btn[data-tip]:hover::after,
.dm-console-btn[data-tip]:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.emoji-input-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.emoji-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #7ab800;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.emoji-btn:hover {
  background: #f7fee7;
  border-color: #bbf7d0;
}

.emoji-panel {
  position: absolute;
  bottom: 115%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.16);
  padding: 8px;
  display: none;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  z-index: 1200;
  min-width: 220px;
  max-width: 260px;
  max-height: 240px;
  overflow-y: auto;
}

.emoji-panel.open {
  display: grid;
}

.emoji-option {
  width: 32px;
  height: 32px;
  border: none;
  background: #f8fafc;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}

.emoji-option:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.emoji-panel::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transform: rotate(45deg);
}

.dm-add-image-btn {
  padding: 0 12px;
  min-width: 0;
  height: 36px;
  background: #7ab800;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
}

.dm-add-image-btn:hover {
  background: #679800;
}

#dm-like {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0 8px;
  gap: 6px;
  color: #ef4444;
  font-weight: 700;
}

#dm-like:hover {
  background: transparent;
  color: #dc2626;
}

#dm-like.dm-like-active {
  color: #ef4444;
  opacity: 1;
}

.dm-like-tooltip {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  min-width: 140px;
  max-width: 220px;
  z-index: 9999;
}

.dm-like-tooltip div + div {
  margin-top: 4px;
}

.dm-like-tooltip-hidden {
  display: none;
}

.dm-console-input {
  width: 64px;
  height: 36px;
  border: none;
  border-right: 1px solid #e2e8f0;
  background: transparent;
  text-align: center;
  font-weight: 600;
  color: #475569;
  outline: none;
  font-size: 0.95rem;
}

.dm-console-input:focus {
  outline: none;
}

.dm-speed-input-wrapper {
  display: inline-flex;
  align-items: center;
  border: 2px solid #7ab800;
  border-radius: 12px;
  height: 36px;
  background: white;
  overflow: hidden;
}

.dm-speed-suffix {
  padding: 0 10px;
  font-weight: 600;
  color: #94a3b8;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dm-delete-admin {
  border-color: #cbd5e1;
  color: #6b7280;
}
.dm-delete-admin:hover {
  background: #e2e8f0;
  color: #374151;
}

.dm-carousel-delete-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f6f7f8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #6b7280;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.dm-carousel-delete-btn:hover {
  background: #f1f5f9;
  color: #374151;
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Modal */
.dm-carousel-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 99999;
}

.dm-carousel-modal.is-open {
  display: flex;
}

.dm-carousel-modal__dialog {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem;
  width: min(420px, 92vw);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.dm-carousel-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.dm-carousel-modal__header h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
}

.dm-carousel-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: #6b7280;
}

.dm-carousel-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dm-carousel-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: #374151;
}

.dm-carousel-field input,
.dm-carousel-field select,
.dm-carousel-field textarea {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.dm-carousel-field input:focus,
.dm-carousel-field select:focus,
.dm-carousel-field textarea:focus {
  border-color: #7ab800;
  box-shadow: 0 0 0 3px rgba(122, 184, 0, 0.18);
}

.dm-carousel-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.dm-carousel-primary,
.dm-carousel-secondary {
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.dm-carousel-primary {
  background: linear-gradient(135deg, #7ab800, #5a8a00);
  color: #fff;
  box-shadow: 0 12px 24px rgba(122, 184, 0, 0.25);
}

.dm-carousel-secondary {
  background: #f1f5f9;
  color: #374151;
}

.dm-carousel-error {
  margin-top: 0.35rem;
  color: #b91c1c;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .dm-carousel-section {
    padding: 1.1rem;
  }

  .dm-carousel-img {
    height: 240px;
  }

  .dm-carousel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dm-carousel-actions {
    align-self: flex-end;
  }
}

/* =========================
   DM Carousel - Comments UI
   ========================= */
.dm-carousel-stage{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 12px;
}
.dm-carousel-stage > *{
  align-self: stretch;
}
.dm-carousel-left{
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
@media (max-width: 980px){
  .dm-carousel-stage{
    grid-template-columns: 1fr;
  }
  .dm-comments{
    width: 100%;
  }
}
.dm-comments{
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  display:flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  width: clamp(280px, 21vw, 320px);
}
.dm-comments__composer{
  border-top: 1px solid rgba(0,0,0,.06);
  padding: 10px 12px 12px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dm-comments__header{
  padding: 14px 14px 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.dm-comments__title{
  font-weight: 700;
  color: #111827;
  font-size: 0.95rem;
}
.dm-comments__count{
  font-weight: 800;
  color: var(--first-color);
  background: rgba(122,184,0,.12);
  border: 1px solid rgba(122,184,0,.22);
  border-radius: 999px;
  padding: 4px 10px;
  min-width: 34px;
  text-align: center;
}
.dm-comments__list{
  padding: 12px;
  overflow: auto;
  flex: 1;
}
.dm-comments__empty{
  color: #6b7280;
  font-size: .95rem;
  padding: 10px 2px;
}
.dm-comment{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 10px 12px;
  background: #f9fafb;
  margin-bottom: 10px;
}
.dm-comment__meta{
  display:flex;
  align-items:center;
  gap: 8px;
  margin-bottom: 6px;
  background: #f3f5f6;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.04);
}
.dm-comment__author{
  font-weight: 700;
  color: #374151;
  font-size: .85rem;
  white-space: nowrap;
}
.dm-comment__date{
  color: #6b7280;
  font-size: .7rem;
  white-space: nowrap;
}
.dm-comment__text{
  color: #111827;
  font-size: .875rem;
  line-height: 1.35;
  white-space: pre-wrap;
  background: #fff;
  padding: 6px 2px 2px;
}
.dm-comment__actions{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.dm-comment-like,
.dm-comment-del{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.85rem;
  transition: border-color .15s ease, background .15s ease;
}
.dm-comment-like.is-active{
  border-color: rgba(122,184,0,.45);
  background: rgba(122,184,0,.08);
  color: var(--first-color);
}
.dm-comment-like:hover,
.dm-comment-del:hover{
  border-color: rgba(0,0,0,.16);
}
.dm-comment-del{
  color: #b91c1c;
}
.dm-comment-like span{
  font-weight: 700;
}
.dm-comment-like .dm-like-tooltip{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 160px;
  max-width: 260px;
  padding: 8px 10px;
  background: #fff;
  color: #374151;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  font-size: 0.85rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: all .15s ease;
  z-index: 20;
}
.dm-comment-like:hover .dm-like-tooltip,
.dm-comment-like:focus-visible .dm-like-tooltip{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dm-comment__meta{
  display:flex;
  align-items:baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.dm-comment__author{
  font-weight: 700;
  color: #111827;
  font-size: .9rem;
}
.dm-comment__date{
  color: #6b7280;
  font-size: .78rem;
  white-space: nowrap;
}
.dm-comment__text{
  color: #111827;
  font-size: .875rem;
  line-height: 1.35;
  white-space: pre-wrap;
}
.dm-comment-btn{
  background: var(--first-color);
  color: #fff;
  border-color: rgba(0,0,0,0);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(122,184,0,.18);
}
.dm-comment-btn:hover{
  filter: brightness(0.98);
  transform: translateY(-1px);
}
.dm-comment-btn:active{
  transform: translateY(0);
}
.dm-comment-btn:focus-visible{
  outline: 3px solid rgba(122,184,0,.25);
  outline-offset: 2px;
}

/* Inline composer */
.dm-comment-inline{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: relative;
}
.dm-comment-inline textarea{
  border: none;
  resize: none;
  min-height: 36px;
  max-height: 92px;
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.3;
  padding: 6px 6px;
  outline: none;
}
.dm-comment-inline textarea:focus-visible{
  outline: none;
}
.dm-comment-submit{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff !important;
  color: #7ab800 !important;
  border: 1.5px solid #7ab800 !important;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(122,184,0,0.08);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
}
.dm-comment-submit:hover{
  background: #f6fde9 !important;
  box-shadow: 0 10px 22px rgba(122,184,0,0.14);
}
.dm-comment-submit:active{
  transform: translateY(1px);
}
.dm-comment-submit:focus-visible{
  outline: 3px solid rgba(122,184,0,0.25);
  outline-offset: 2px;
}
.dm-comment-emoji{
  min-width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}
.dm-comment-emoji:hover{
  background: #f3f4f6;
}

.dm-carousel-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dm-carousel-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  text-align: center;
}

.dm-camera-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(66%) sepia(60%) saturate(596%) hue-rotate(54deg) brightness(93%) contrast(86%);
}

.dm-loading {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dm-loading-hidden {
  display: none;
}

.dm-spinner {
  width: 48px;
  height: 48px;
  border: 6px solid rgba(0, 0, 0, 0.1);
  border-top-color: #7ab800;
  border-radius: 50%;
  animation: dm-spin 0.8s linear infinite;
  margin-bottom: 12px;
}

.dm-loading p {
  font-size: 14px;
  color: #333;
}

@keyframes dm-spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- FIX: Pill Brisa para botón Enviar comentario (Registro visual) --- */
.dm-comments__composer #dm-comment-send.dm-comment-submit{
  width: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #ffffff !important;
  color: #7AB800 !important;

  border: 2px solid #7AB800 !important;
  border-radius: 9999px !important;

  padding: 12px 16px !important;
  min-height: 44px !important;

  font-weight: 800 !important;
  font-size: 0.95rem !important;
  letter-spacing: .2px !important;

  cursor: pointer !important;
  user-select: none !important;

  box-shadow: 0 8px 18px rgba(122,184,0,0.10) !important;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, opacity .12s ease !important;
}

.dm-comments__composer #dm-comment-send.dm-comment-submit:hover:not(:disabled){
  background: #F6FDE9 !important; /* suave, mantiene fondo blanco “tintado” */
  box-shadow: 0 10px 22px rgba(122,184,0,0.16) !important;
  transform: translateY(-1px) !important;
}

.dm-comments__composer #dm-comment-send.dm-comment-submit:active:not(:disabled){
  transform: translateY(0px) !important;
  box-shadow: 0 8px 18px rgba(122,184,0,0.12) !important;
}

.dm-comments__composer #dm-comment-send.dm-comment-submit:focus-visible{
  outline: 3px solid rgba(122,184,0,0.25) !important;
  outline-offset: 2px !important;
}

.dm-comments__composer #dm-comment-send.dm-comment-submit:disabled{
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;

  /* IMPORTANTE: mantener SIEMPRE el pill (no perder borde/colores) */
  background: #ffffff !important;
  color: #7AB800 !important;
  border: 2px solid #7AB800 !important;
}
