/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/




/* === FORZA FRECCE QUADRATE - compatibile con widget Formazioni e CSS Elementor === */

/* Allinea le frecce al centro verticale delle miniature (CSS forte) */
.galleria-formazioni-wrapper { position: relative; }

/* make arrows container occupy full height of wrapper so align-items:center centers to images */
.galleria-formazioni-arrows {
    position: absolute !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;    /* <-- questo centra verticalmente rispetto all'altezza reale */
    pointer-events: none !important;
    z-index: 9999 !important;
}

/* assicurati che lo slider abbia l'altezza degli elementi */
.galleria-formazioni-slider {
    display: flex;
    align-items: center; /* fa sì che gli item siano centrati verticalmente */
}

/* frecce - conservano la forma quadrata e la possibilità di opacità dal widget */
.galleria-formazioni-arrows span {
    pointer-events: all !important;
    width: 45px !important;
    height: 45px !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 10px !important;
    font-size: 22px !important;
    background: rgba(0,0,0,0.5) !important;
    color: #fff !important;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3) !important;
}




