﻿.icon-bar {
    background-color: white; /* Un fondo claro */
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6; /* Una línea divisoria */
}

.icon-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #495057; /* Color de texto base */
    font-size: 0.8rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .icon-button:hover {
        background-color: #feb8a9; /* Un ligero cambio de color al pasar el mouse */
    }

    .icon-button i {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .icon-button.active {
        background-color: #d44628; /* Color de fondo para el botón activo */
        color: white;
    }

        .icon-button.active:hover {
            background-color: #5a6268;
        }
