/* 
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
*/

/* Add your custom styles here */

.icon {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.icon i {
    margin-right: 8px;
    font-size: 18px;
}

/* Stile per il pulsante Indietro */
.back-icon {
    background-color: #FFBE4F; /* Giallo/Arancio */
    color: #6D00F9; /* Viola */
}

.back-icon:hover {
    background-color: #E6A83F; /* Giallo/Arancio leggermente più scuro */
    transform: scale(1.05);
}

/* Stile per il pulsante Login */
.login-icon {
    background-color: #6D00F9; /* Viola */
    color: #FFFFFF;
}

.login-icon:hover {
    background-color: #5900D0; /* Viola più scuro */
    transform: scale(1.05);
}

/* Stile per il pulsante Logout */
.logout-icon {
    background-color: #FF3E2F; /* Rosso */
    color: #FFFFFF;
}

.logout-icon:hover {
    background-color: #D92F24; /* Rosso più scuro */
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .icon {
        padding: 6px 10px; /* Riduce il padding */
        font-size: 10px; /* Riduce il testo */
        border-radius: 6px;
    }

    .icon i {
        margin-right: 5px;
        font-size: 14px; /* Riduce l'icona */
    }
}
