.vamarog-wrapper {
    margin: 2rem auto;
    max-width: 500px;
    padding: 1rem;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* Botón moderno */
.vamarog-show {
    display: block;
    margin: 0 auto 1rem auto;
    padding: 12px 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vamarog-show:hover {
    background: linear-gradient(135deg, #4338ca, #2563eb);
    transform: scale(1.03);
}

/* Contenedor con animación de despliegue */
.vamarog-data {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.vamarog-data.visible {
    max-height: 1000px; /* suficiente para el contenido */
    opacity: 1;
}

/* Vista actual */
.vamarog-now {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

/* Historial */
.vamarog-toggle {
    background: none;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.vamarog-history {
    list-style: none;
    padding-left: 1rem;
}


.vamarog-toggle {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0066cc;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vamarog-toggle:hover {
  background-color: #004999;
}

.vamarog-cover {
  border-radius: 12px;
  object-fit: cover;
}

.vamarog-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  color: #28a745;
  margin: 6px 0 0;
}

.vamarog-live .live-indicator {
  width: 10px;
  height: 10px;
  background-color: #28a745;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.vamarog-history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vamarog-history-cover {
    border-radius: 6px;
    object-fit: cover;
}

.vamarog-history-text {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}
