/* Estilos para el logo con fondo blanco redondeado */
.logo-container {
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-container {
    width: 50px;
    height: 50px;
    padding: 5px;
    margin-right: 10px;
}

.sidebar-header .logo-container,
.sidebar-logo {
    width: 60px;
    height: 60px;
    padding: 5px;
    margin: 0 auto 10px;
}

.footer .logo-container {
    width: 40px;
    height: 40px;
    padding: 3px;
    margin-right: 8px;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 767.98px) {
    .navbar-brand .logo-container {
        width: 40px;
        height: 40px;
    }
    
    .sidebar-header .logo-container {
        width: 50px;
        height: 50px;
    }
}
