/* --------------------------------------------------
   ⚡ ACCIONES RÁPIDAS — YOUTUBE DARK STYLE
   -------------------------------------------------- */

.acciones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  width: 100%; height: auto;
}

.accion-btn {
  background: #1f1f1f;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  
}


.accion-btn:hover {
  background: #2a2a2a;
}

.accion-btn:active {
  transform: scale(0.97);
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute; /* ← ESTE ES EL FIX CRÍTICO */
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.6s ease;
  z-index: 0; /* ← EL TEXTO QUEDA ENCIMA */
}

.ripple:active::after {
  transform: translate(-50%, -50%) scale(12);
  opacity: 1;
}

.section {
  transition: none !important;
}

.accion-btn i {
  margin-right: 8px;
  font-size: 18px;
  color: #fff;
}


.icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}



