/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Description: Child theme for Astra. Generated from provided Astra theme package.
Author: Brainstorm Force
Author URI: https://wpastra.com/
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/

/* Add your custom styles below this line */
/* ===== Barra de acciones (footer fijo en móvil) ===== */
:root{
  --actionbar-h: 64px;
  --actionbar-bg: #1aa34a; /* verde (cámbialo si quieres otro tono) */
}

@media (max-width: 899px){
  /* deja hueco abajo para que el contenido no quede tapado */
  body{
    padding-bottom: var(--actionbar-h);
  }

  .excel-actionbar{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: var(--actionbar-h);
    z-index: 9999;

    background: var(--actionbar-bg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(0,0,0,.15);
  }

  .excel-actionbar a{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;

    font-size: .8rem;
    color: #f9f9f9;;              /* texto negro */
    text-decoration: none;
  }

  .excel-actionbar svg{
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
  }
}

@media (min-width: 900px){
  .excel-actionbar{ display:none; }
}